摘要:
目录1. dict与str之间转换1.1. dict -> str1.2 str -> dict2. dict与文件间转换2.1. dict -> fid2.2. fid -> dict2.3 dict与.gz压缩文件 1. dict与str之间转换 1.1. dict -> str >>> imp 阅读全文
摘要:
1. 使用subprocess.Popen() 调用命令: import subprocess proc=subprocess.Popen( 'ls .vim*', # 待执行的命令 shell=True, # 使用shell cwd='/home/g00444054', # 到这个目录去执行命令 阅读全文
摘要:
1. 使用步骤 使用步骤如下: # 导入模块 import argparse # 获取parser, description文本会显示在help信息中 parser = argparse.ArgumentParser(description='args discrip') # 添加选项, 具体选项类 阅读全文
摘要:
目录1. list内置方法sort()2. 全局方法sorted()3. key参数 1. list内置方法sort() 语法:sort(key=None, reverse=False) 参数: key,一个函数,作用是指定比较的元素, 通常由lambda指定, 可以指定多个值lambda x: ( 阅读全文
摘要:
目录1. 使用%1.1. 对整数指定宽度1.2. 通过变量指定宽度1.3. 对小数指定宽度1.4. 通过变量指定总宽度和小数宽度2. 使用format2.1. 通过位置映射2.2. 通过key映射2.3. 通过下标映射2.4. 填充与对齐, 用变量指定宽度2.5. 指定小数部分宽度2.6. 添加千分 阅读全文
摘要:
1. 导入模块 >>> import tkinter >>> interp = tkinter.Tcl() 2. 通过eval调用tcl命令,返回值为str >>> # 调用tcl语句 >>> interp.eval('source xx.tcl') >>> >>> # 调用array names返 阅读全文
摘要:
目录1. time模块1.1. 求当前时间戳1.2. 求给定时间的时间戳(输入时间元组)1.3. 按指定格式显示当前时间,返回字符串1.4. 指定时间字符串,按指定格式拆分为数组1.5. 显示英文时间1.6. 进程挂起1s, 0.1s时间1.7. 格式化字符串2. datetime模块2.1. 初始 阅读全文
摘要:
目录1. 绝对值2. 数字取整2.1. 只取整数部分int()2.2. 向下取整math.floor()2.3. 向上取整 math.ceil()2.4. 四舍六入round()2.4.1 两边一样远时, python2.7中保留到离0远的一边.2.4.2 两边一样远时, python3.5中保留到 阅读全文