常用python shell

路径及文件操作

创建目录

os.mkdir(path_str)

列出当前文件夹中文件,存入string list中

os.listdir(path_str)

判断路径是否存在

os.path.exists(path_str)

判断路径对应的位置是文件吗?

os.path.isfile(path_str)

路径拼接

string1 = '/home'
string2 = 'fariver'
os.path.join(string1, string2)
output:
'/home/fariver'

获取当前文件夹路径

pwd = os.getcwd();

change pwd to path

os.chdir(path)  

remove directory and its contents, delete all files in path

import shutil
shutil.rmtree(‘dirname’)    

remove a file

os.remove(‘filename’)   

其它目录操作参见
分隔文件名中的后缀与前缀

file_name = '/home/xxx/xxx/xxx.jpg'
res = os.path.splitext(file_name)
output:
type(res)
    tuple
res[0]
    '/home/xxx/xxx/xxx'
res[1]
    '.jpg'

在文件夹中寻找固定后缀的全部文件

import glob
file_list = glob.glob('xx/xx/*.jpg')
file = 
['/home/xxx/xx1.jpg', '/home/xxx/xx2.jpg']

当前python shell中的变量

dir() #will give you the list of in scope variables:
globals() #will give you a dictionary of global variables
locals() #will give you a dictionary of local variables

程序执行时等待用户从键盘输入

input()与raw_input()
Input()会根据输入的数据的内容作适当的类型转换,比如说数字串会转换为数字
Raw_input()则是输入什么串都原封不动的保存为相应字符串

转载于:https://www.cnblogs.com/fariver/p/6511694.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值