Learn Python the Hard Way 02 Comments and Pound Characters

Chenyu Tsai
UXAI
Published in
2 min readAug 14, 2019

Python 中的 comments 如何運用

評論 (Comment) 在程式中相當重要,可以用做紀錄或是告訴協作的人,這段程式碼在做什麼,也能暫時的把一段程式碼忽略,因為在執行程式時,是不會跑被設為評論的那行的。

直接來看一下 comments 要怎麼做:

# A comment, this is so you can read your program later. 
# Anything after the # is ignored python.
print("I could have code like this.") # and the comment after is ignored # You can also use a comment to "disable" or comment out code:
# print("This won't run.")
print("This will run.")

前面有加一個 # 井字號的那行,程式會自動忽略他,所以我們的輸出會是這樣:

output:

I could have code like this. 
This will run.

假如之後讀英文的相關內容,井字號的英文是 octothorpe 或是也有叫做 pound charcter (磅符,我直接翻的) 的。

print(“Hellow # World”),他會印出 Hellow # World,因為在這裏他是在一個字串中。

這系列文章的練習,都是來自於 Learn Python the Hard Way 這本書中,內容只針對練習做紀錄和自己的心得分享,為保護著作權故沒有透露太多內容,能力可及的話還是鼓勵大家買一本來自行練習,有問題都可以在下方進行討論

Learn Python the Hard Way 系列文章

  1. LPTHW 01 First Program
  2. LPTHW 02 Comments & Pound Characters
  3. LPTHW 03 Numbers & Math

--

--