首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
PythonTwo
】的更多相关文章
PythonTwo
格式化输出: % 占位符 s(str 字符串) d(digit 数字) %% 只单纯显示% Str 索引切片 captlze 首字母大写 upper 全大写 lower 全小写 find 通过元素找索引,找不到-1 Index() 通过元素找索引,找不到报错 swpcase 大小写翻转 len 长度 replace (old new count) Isdigit() int类型 返回bool值 数据类型划分:可变数据类型 不可变数据类型 不可变数据类型:元组 bool str i…
python NameError: name 'file' is not defined
import sys import time import os poem='''\ 测试读写文件 ''' print(os.getcwd()) f=file(os.getcwd()+'/python.txt','w') f.write(poem) f.close() C:\Users\Administrator\Desktop Traceback (most recent call last): File , in <module> f=file(os.getcwd()+'/python.t…