====== Python 3 ====== * [[http://docs.python.org/py3k/howto/pyporting.html|Porting Python 2 Code to Python 3]] * [[http://www.snarky.ca/why-python-3-exists|Brett Cannon - Why Python 3 exists]] * [[http://mcchae.egloos.com/11195891|지훈현서 : [Python] 버전2에서 버전3으로 옮겨갈 때 주의 점 들]] * [[http://python3porting.com/|Porting to Python 3]] * [[http://packages.python.org/six/|Six: Python 2 and 3 Compatibility Library]] * [[https://docs.djangoproject.com/en/dev/topics/python3/|Django Portin to Python 3]] * [[http://lucumr.pocoo.org/2011/1/22/forwards-compatible-python/|Writing Forwards Compatible Python Code | Armin Ronacher's Thoughts and Writings]] * [[http://python3wos.appspot.com/|Python 3 Wall Of Superpowers]] 주요 패키지들의 Python 3 지원여부 * [[http://www.infoq.com/news/2015/09/python35-released|Python 3.5 Brings New Language Features and Library Modules]] * [[http://blog.jetbrains.com/pycharm/2015/11/python-3-5-type-hinting-in-pycharm-5/|Python 3.5 type hinting in PyCharm 5]] Python 3.5 type hinting * [[http://code.tutsplus.com/tutorials/python-3-type-hints-and-static-analysis--cms-25731|Python 3 Type Hints and Static Analysis - Envato Tuts+ Code Tutorial]] * [[https://dzone.com/articles/type-hinting-in-python-3|Type Hinting in Python 3]] * [[http://code.tutsplus.com/tutorials/python-3-function-annotations--cms-25689|Python 3 Function Annotations]] * [[https://asmeurer.github.io/python3-presentation/slides.html|10 awesome features of Python that you can't use because you refuse to upgrade to Python 3]] * [[https://codeonweb.com/course/5c550b25-9638-4d0f-8043-97ac01415f62|Python 3 뛰어들기/Dive into Python 3]] [[http://getpython3.com/diveintopython3/|Dive into Python 3 in English]] ===== Unicode ===== ''from __future__ import unicode_literals''를 통해 Python 3 처럼 ''u'' 마커없이 기본 유니코드로 간주한다. 단, ''unicode_literals''를 사용하지 않는 다른 라이브러리와의 연동시 매우 유의해야 한다. * [[http://stackoverflow.com/questions/809796/any-gotchas-using-unicode-literals-in-python-2-6|unicode - Any gotchas using unicode_literals in Python 2.6?]] # encoding: utf-8 from __future__ import unicode_literals print('안녕?') 이는 ''print(u'안녕?')''과 같다. ===== Python 3.6 ===== * [[http://raccoonyy.github.io/whats-new-in-python-3-6-korean/|파이썬 3.6에서 바뀐 점]] * [[https://cito.github.io/blog/f-strings/|The new f-strings in Python 3.6]] ===== Python 3.8 ===== * [[https://python.flowdas.com/whatsnew/3.8.html|파이썬 3.8의 새로운 기능 — 파이썬 설명서 주석판]] ===== Python 3.9 ===== * [[https://www.44bits.io/ko/post/python-3-9-release-note-summary|파이썬(Python) 3.9 릴리스와 주요 변경 사항 | 44BITS]] * [[https://docs.python.org/ko/3.9/whatsnew/3.9.html|What’s New In Python 3.9 — Python 3.9.0 문서]] ===== Python 3.11 ===== * [[https://blog.lablup.com/posts/2022/03/29/PersistentTaskGroup|Persistent Task Group | Lablup Blog]] ===== 참조 ===== * [[https://perso.limsi.fr/pointal/_media/python:cours:mementopython3-english.pdf|Python 3 Cheat Sheet]]