摘要:
第一点:split 直接举例子,比较直观, >>> f = 'www.baidu.com.cn' >>> f.split()['www.baidu.com.cn'] #string.split()返回的是一个列表? >>> f.split('.')['www', 'baidu', 'com', 'c 阅读全文
摘要:
目的是将print的结果输出到一个文件中,比如这个文件在D:\lianxi\out.txt下,我用的windows: s = '1234' f = open (r'D:\lianxi\out.txt','w') print (s,file = f) 然后f.close() 网上也有说直接print( 阅读全文