1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-27 00:26:15 +02:00

Switch links: 'python3 <-> python' and 'python <-> pythonlegacy'

The list of references is exhausted by running 'ack docs/python'.
This commit is contained in:
Simon Shine
2020-02-12 05:03:08 +01:00
parent a3b0585374
commit efe00fd06e
13 changed files with 13 additions and 13 deletions

View File

@@ -16,7 +16,7 @@ Python是在1990年代早期由Guido Van Rossum創建的。它是現在最流行
非常歡迎各位給我們任何回饋! 你可以在[@louiedinh](http://twitter.com/louiedinh) 或 louiedinh [at] [google's email service]聯絡到我。
註: 本篇文章適用的版本為Python 2.7但大部分的Python 2.X版本應該都適用。 Python 2.7將會在2020年停止維護因此建議您可以從Python 3開始學Python。
Python 3.X可以看這篇[Python 3 教學 (英文)](http://learnxinyminutes.com/docs/python3/).
Python 3.X可以看這篇[Python 3 教學 (英文)](http://learnxinyminutes.com/docs/python/).
讓程式碼同時支援Python 2.7和3.X是可以做到的只要引入
[`__future__` imports](https://docs.python.org/2/library/__future__.html) 模組.