Study/Python3
-
Python3를 스터디 하는 이유Study/Python3 2022. 4. 11. 10:21
1. Python2는 2020년 1월 1일 이후 더 이상 유지보수 되지 않습니다. 2. Python3는 유니코드를 지원합니다. --> ' '(작은 따옴표), " "(큰 따옴표), """ """(삼중따옴표)를 지원합니다. 3. Python3는 정수 처리 기능이 개선되었습니다. 파이썬 버젼 정수 처리 Python3 5/2 = 2.5 Python2 5/2 = 2 Python2 5.0/2 = 2.5 4. Python3는 Print 구문에 ( ) 를 넣어야 합니다. 파이썬 버젼 Print 구문 Python3 Print("Hello World") Python2 Print "Hello World" 참고 사이트: https://pythonfundu.blogspot.com/2019/02/python-2-vs-3.html..