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 |
Tags
- string
- vue.js
- leetcode
- JavaScript
- Python
- github
- CSS
- 프로그래머스
- JavaSceipt
- 파이썬
- 자료구조
- dynamic programming
- sorting
- array
- JS
- SasS
- 변수
- java
- math
- Algorithm
- greedy
- 컴포넌트
- computed
- scss
- hash table
- 자료형
- 백준
- 알고리즘
- 코딩테스트
- HTML
Archives
- Today
- Total
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은 많이 비슷하지만 몇 가지 다른 점이 존재합니다. list는 대괄호( [] )를 사용하고 tuple은 소괄호()를 사용한다는 점이 있습니다. 프로그래밍을 할 때 값의 변화가 있을 것 같을때는 list를 사용하고 변하지 않고 사용할 때는 tuple을 사용하시면 됩니다.
탈출 문자
\n : 줄바꿈
\" \' : 문장 내에서 따옴표
\\ : 문장 내에서 역슬래시 표기
\r : 커서를 맨 앞으로 이동해서 index에 맞춰서 치환
\b : 백스페이스(한 글자 삭제)
\t : 탭(4칸/8칸씩 이동할 때)
print("Hello\nWorld")
print("Hello\"World\"")
print("Hello\\World")
print("Red Apple\rPink")
print("Hello\bWorld")
print("Hello\tWorld")
728x90
'Python' 카테고리의 다른 글
[Python] 인덱싱과 슬라이싱 (0) | 2022.11.21 |
---|---|
[Python] 비교연산자와 논리연산자 (0) | 2022.11.21 |
[Python] 산술연산자와 형변환(int, flaot, str, bool) (2) | 2022.11.21 |
[Python] 변수 사용 및 식별자 명명 규칙 (0) | 2022.11.18 |
[Python] 인텔리제이(IntelliJ)에서 파이썬 사용하기 (0) | 2022.11.18 |