快速開始HelloWorld和Python之禪
環境安裝
直接到官網下載對應的 OS 的版本安裝即可。
https://www.python.org/downloads/
Python IDE Shell 介面
Python 3.6.5 (v3.6.5:f59c0932b4, Mar 28 2018, 05:52:31)
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)] on darwin
Type "copyright", "credits" or "license()" for more information.
>>> print("Hello World")
Hello World
>>> import keyword
>>> keyword.kwlist
[`False`, `None`, `True`, `and`, `as`, `assert`, `break`, `class`, `continue`, `def`, `del`, `elif`, `else`, `except`, `finally`, `for`, `from`, `global`, `if`, `import`, `in`, `is`, `lambda`, `nonlocal`, `not`, `or`, `pass`, `raise`, `return`, `try`, `while`, `with`, `yield`]
>>>
當然,我們也可以新建一個 hello_world.py 原始碼檔案:
#!/user/bin/env python3
print("Hello World")
然後,在命令列執行:
$ python3 hello_world.py
Hello World
PS : Python 之禪
The Zen of Python
>>> import this
The Zen of Python, by Tim Peters
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren`t special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you`re Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it`s a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let`s do more of those!
Python 之禪
by Tim Peters
優美勝於醜陋(Python 以編寫優美的程式碼為目標)
明瞭勝於晦澀(優美的程式碼應當是明瞭的,命名規範,風格相似)
簡潔勝於複雜(優美的程式碼應當是簡潔的,不要有複雜的內部實現)
複雜勝於凌亂(如果複雜不可避免,那程式碼間也不能有難懂的關係,要保持介面簡潔)
扁平勝於巢狀(優美的程式碼應當是扁平的,不能有太多的巢狀)
間隔勝於緊湊(優美的程式碼有適當的間隔,不要奢望一行程式碼解決問題)
可讀性很重要(優美的程式碼是可讀的)
即便假借特例的實用性之名,也不可違背這些規則(這些規則至高無上)
不要包容所有錯誤,除非你確定需要這樣做(精準地捕獲異常,不寫 except:pass 風格的程式碼)
當存在多種可能,不要嘗試去猜測
而是儘量找一種,最好是唯一一種明顯的解決方案(如果不確定,就用窮舉法)
雖然這並不容易,因為你不是 Python 之父(這裡的 Dutch 是指 Guido )
做也許好過不做,但不假思索就動手還不如不做(動手之前要細思量)
如果你無法向人描述你的方案,那肯定不是一個好方案;反之亦然(方案測評標準)
名稱空間是一種絕妙的理念,我們應當多加利用(倡導與號召)
相關文章
- Python 之禪Python
- python之禪Python
- .Net 8.0 除gRPC之外的另一個選擇,IceRPC之快速開始HelloWorldRPC
- SpringBoot入門(一):從HelloWorld開始Spring Boot
- Python之禪-import this的實現PythonImport
- FASM之HelloWorldASM
- 每週工作75小時後,他開始禪修
- AngularJS快速開始AngularJS
- dapr快速開始
- python資料統計之禪道bug統計Python
- DashText-快速開始
- SpringCloudConfig-快速開始SpringGCCloud
- python進階(一)變數與資料型別、python之禪Python變數資料型別
- 聊一聊 EventBus 原始碼和設計之禪原始碼
- 微信小遊戲開放域之helloworld遊戲
- silky微服務快速開始微服務
- 從零開始學 Python 之基礎語法Python
- Airflow 中文文件:快速開始AI
- Cordova快速開始(安卓篇)安卓
- golang 快速入門 [3]-go 語言 helloworldGolang
- 學習Source Generators之HelloWorld
- netty 之 telnet HelloWorld 詳解Netty
- Flask之 安裝與HelloWorldFlask
- 快速開始api開發(五)定時任務 crontab 和 佇列 queueAPI佇列
- Python從3.7開始各版本新增特性和示例Python
- 從 HelloWorld 說開去
- 國產Dhyana禪定x86處理器開始啟動生產
- 開始學習Python!Python
- Draft 文件翻譯 - 快速開始 - 概念Raft
- 從演算法開始[快速排序]演算法排序
- Open3d之python版本快速安裝和使用3DPython
- 如何快速開始進行echart元件開發元件
- Python 禪道測試用例助手Python
- 開始和起名
- ??Java開發者的Python快速進修指南:控制之if-else和迴圈技巧JavaPython
- 從零開始學Python(八):Python多執行緒和佇列Python執行緒佇列
- 使用Python快速開發API和Web的工具:ApiLogicServerPythonAPIWebServer
- 從零開始學PythonPython