일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Substring with Concatenation of All Words
- 315. Count of Smaller Numbers After Self
- 109. Convert Sorted List to Binary Search Tree
- t1
- Decorator
- 시바견
- concurrency
- iterator
- 30. Substring with Concatenation of All Words
- 프로그래머스
- shiba
- Class
- attribute
- 715. Range Module
- Protocol
- 밴픽
- Convert Sorted List to Binary Search Tree
- Python Code
- DWG
- 파이썬
- kaggle
- data science
- LeetCode
- 운영체제
- Generator
- Python Implementation
- Regular Expression
- Python
- 43. Multiply Strings
- 컴퓨터의 구조
- Today
- Total
목록Computer Science/Basics of Basics (2)
Scribbling
1. Pandas Series 1.1. Series import pandas as pd a = [1, 7, 2] myvar = pd.Series(a) print(myvar) 1.2. with index a = [1, 7, 2] myvar = pd.Series(a, index = ["x", "y", "z"]) print(myvar) 1.3. set of (keys, values) calories = {"day1": 420, "day2": 380, "day3": 390} myvar = pd.Series(calories) print(myvar) calories = {"day1": 420, "day2": 380, "day3": 390} myvar = pd.Series(calories, index = ["day1..
0. JavaScript Environment https://jsbin.com/?js,console JS Bin Sample of the bin: jsbin.com 1. Variables let x = 3; const y = 4; console.log(x*y); let num = 3.14; console.log(typeof(x)) 2. Conditionals 2.1. If let season = 'summer'; if (season === 'spring') { console.log('It\'s spring! The trees are budding!'); } else if (season === 'winter'){ console.log('It\'s winter! Everything is covered in ..