摘要:
file_path = 'E:\python\code\learning_python.txt'with open(file_path) as filename: fileStr=filename.read() print(fileStr) filename.seek(0) >让文件指针回到开始 f 阅读全文
2021年12月27日
摘要:
in 在python中的使用很常见,用处也很多,很强大,这里记录下几种常见的用法。 1、在 for 循环中,获取列表或者元组的每一项: >item是变量 for item in list:2、判断左边的元素是否包含于列表,类似java中的List的contains方法 >in 前面是确定的值,不是变 阅读全文