python常用語法

2021-08-08 09:05:14 字數 1148 閱讀 4853

python語句中一般以新行作為為語句的結束符。

但是我們可以使用斜槓( \)將一行的語句分為多行顯示,如下所示:

total 

=item_one +\

item_two +\

item_three

語句中包含 , {} 或 () 括號就不需要使用多行連線符。如下例項:

days =[

'monday'

,'tuesday'

,'wednesday'

,'thursday'

,'friday'

]

python 可以使用引號( ' )、雙引號( " )、三引號( ''' 或 """ ) 來表示字串,引號的開始與結束必須的相同型別的。

其中三引號可以由多行組成,編寫多行文字的快捷語法,常用於文件字串,在檔案的特定地點,被當做注釋。

word 

='word'

sentence

="這是乙個句子。"

paragraph

="""這是乙個段落。

包含了多個語句"""

python中單行注釋採用 # 開頭。

#!/usr/bin/python

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

# 檔名:test.py

# 第乙個注釋

print

"hello, python!"

;# 第二個注釋

輸出結果:

hello

,python

!

注釋可以在語句或表示式行末:

name 

="madisetti"

# 這是乙個注釋

python 中多行注釋使用三個單引號(''')或三個雙引號(""")。

#!/usr/bin/python

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

# 檔名:test.py

'''這是多行注釋,使用單引號。

這是多行注釋,使用單引號。

這是多行注釋,使用單引號。

'''"""

這是多行注釋,使用雙引號。

這是多行注釋,使用雙引號。

這是多行注釋,使用雙引號。

"""

Python 常用語法

1.遍歷乙個資料夾 apks c filenames os.listdir apks for filename in filesnames 此處遍歷出來的非完整路徑,只是檔案名字 do something apks filename 絕對路徑需要拼接處理2.判斷乙個檔案或資料夾是否存在 import...

Python常用語法

shift enter 建立新行並移動游標到新行行首 ctrl 注釋或取消注釋 ctrl alt i 自動縮進行 alt shift q 更新 到遠端伺服器 a 1 2,3 b 4 print a a a 1,2,3,4 a 1 2,3 b 4 a.extend b print a a a 1,2,...

mysql常用語法 MySQL常用語法

更新資料 update 表名 set 健名 更改的值 where 建 刪除資料 delete from 表名 where 索引 create index 索引名稱 on 表名 鍵名 建立試圖 create view 檢視名 鍵,鍵 as select matchno,abs won lost fro...