摘要: 第一点:split 直接举例子,比较直观, >>> f = 'www.baidu.com.cn' >>> f.split()['www.baidu.com.cn'] #string.split()返回的是一个列表? >>> f.split('.')['www', 'baidu', 'com', 'c 阅读全文
posted @ 2016-12-01 21:49 Bio-Liu 阅读(4032) 评论(1) 推荐(0) 编辑
摘要: 目的是将print的结果输出到一个文件中,比如这个文件在D:\lianxi\out.txt下,我用的windows: s = '1234' f = open (r'D:\lianxi\out.txt','w') print (s,file = f) 然后f.close() 网上也有说直接print( 阅读全文
posted @ 2016-12-01 18:28 Bio-Liu 阅读(28120) 评论(0) 推荐(0) 编辑