Created
June 26, 2017 06:35
-
-
Save lhsfcboy/ef74bb6a0425c452b92e76af4d01a07e to your computer and use it in GitHub Desktop.
同时打开两个文件
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with open('name_age.txt', 'r') as fread, open('age_name.txt', 'w') as fwrite: | |
line = fread.readline() | |
while line: | |
name, age = line.rstrip().split(',') | |
fwrite.write('{},{}\n'.format(age, name)) | |
line = fread.readline() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment