3 再走Python路 注釋

2021-10-02 16:58:59 字數 517 閱讀 9346

print

("hello world!"

)#以上**用來列印出 hello world! 這個字串 程式實際並不執行改行

print

("hello world!"

)'''

該注釋模式下 可以寫多行注釋內容

以上**用來列印出 hello world! 這個字串 程式實際並不執行這段話

'''

print

("hello world!"

)"""

同樣:該注釋模式下 可以寫多行注釋內容

以上**用來列印出 hello world! 這個字串 程式實際並不執行這段話

"""

# -*- coding:utf-8 -*-

'''在python2中假如沒有以上注釋宣告 則無法識別中文字元 python3則不受此影響

'''

14 再走Python路 匿名函式

2020.3.4 bug369456 匿名函式的使用 單引數的匿名函式 a lambda a a a print a 5 多引數的匿名函式 b lambda a,b a b print b 5,6 執行結果如下圖所示 匿名函式的應用,計算機的製作 def jisuan str input 請將計算的...

python3注釋符號

python3 注釋 確保對模組,函式,方法和行內注釋使用正確的風格 python中的注釋有單行注釋和多行注釋 python中單行注釋以 開頭,例如 這是乙個注釋 print hello,world 多行注釋用三個單引號 或者三個雙引號 將注釋括起來,例如 1 單引號 usr bin python3...

Python3 教程 004 注釋

確保對模組,函式,方法和行內注釋使用正確的風格 python中的注釋有單行注釋和多行注釋 python中單行注釋以 開頭,例如 這是乙個注釋 print hello,world 多行注釋用三個單引號 或者三個雙引號 將注釋括起來,例如 usr bin python3 這是多行注釋,用三個單引號 這是...