常用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()则是输入什么串都原封不动的保存为相应字符串

posted @   fariver  阅读(443)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律
点击右上角即可分享
微信分享提示