Python 常用語法

2021-09-23 20:29:29 字數 884 閱讀 6497

1.遍歷乙個資料夾

apks = 'c:\\***'

filenames = os.listdir(apks)

for filename in filesnames: #此處遍歷出來的非完整路徑,只是檔案名字

do_something(apks+"\\"+filename) #絕對路徑需要拼接處理

2.判斷乙個檔案或資料夾是否存在

import os

os.path.exists(test_file.txt)

3.string轉dict,dict轉string

#string轉dict,使用eval函式

test_str = ''

test_dict = eval(test_str)

#dict轉string,使用str函式

test_dict =

test_str = str(test_dict)

4.遍歷乙個dict

for key,value in dict.items():

do_something(key,value)

5.讀寫檔案

#寫檔案

with open("test.txt", 'w') as file_object:

file_object.write("hello world!")

#讀檔案

with open("test.txt",'r") as file_object:

test_string = file_object.read()

python常用語法

python語句中一般以新行作為為語句的結束符。但是我們可以使用斜槓 將一行的語句分為多行顯示,如下所示 total item one item two item three語句中包含 或 括號就不需要使用多行連線符。如下例項 days monday tuesday wednesday thursd...

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...