【Python】常用语法

1.遍历一个文件夹

apks = 'C:\\xxx'
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 = '{"a":3,"b":4}'
test_dict = eval(test_str)


#dict转string,使用str函数
test_dict = {"a":3,"b":4}
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)