Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- dynamic programming
- greedy
- sorting
- java
- JS
- scss
- 파이썬
- github
- 백준
- string
- JavaScript
- 변수
- SasS
- CSS
- computed
- array
- vue.js
- 자료형
- hash table
- math
- 컴포넌트
- 코딩테스트
- Python
- HTML
- 알고리즘
- leetcode
- JavaSceipt
- 프로그래머스
- Algorithm
- 자료구조
Archives
- Today
- Total
목록print (1)
Posis
[Python] 자료형 및 탈출문자
자료형 종류 - 숫자: 정수형(int), 실수형(float) - 시퀀스: 문자열(str), 리스트(list), 튜플(tuple) - 논리형(Boolean) 하나씩 출력해서 확인해 보겠습니다. number = 123 number2 = 123.456 str1 = "HelloWorld" list1 = ["hello", "world"] tuple1 = ("hello", "world") isTrue = True print(type(number)) print(type(number2)) print(type(str1)) print(type(list1)) print(type(tuple1)) print(type(isTrue)) list와 tuple의 차이점 list와 tuple은 많이 비슷하지만 몇 가지 다른 점이 존재합..
Python
2022. 11. 19. 14:26