前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >python中按字母排序_在Python中按字母顺序排序文本文件的内容

python中按字母排序_在Python中按字母顺序排序文本文件的内容

作者头像
用户7886150
修改2021-01-27 15:24:00
4.8K0
修改2021-01-27 15:24:00
举报
文章被收录于专栏:bit哲学院

参考链接: Python程序按字母顺序对单词进行排序

我想在文件内部按字母顺序排序。我当前执行此操作的代码不起作用,文件保持不变。这个程序本身就是一个基本的调查问卷,用来实验读写文件。在import time

 import sys

 name = input("What is your first name?").upper()

 age = input("How old are you?")

 while not age.isdigit():

 print("Please Only Enter Numbers.")

 age = input("How old are you?")

 if int(age) <16:

 infofile = "DatabaseMinor.txt"

 elif int(age) >15 and int(age) <22:

 infofile = "DatabaseYoungAdult.txt"

 elif int(age) >21 and int(age) <65:

 infofile = "DatabaseAdult.txt"

 else:

 infofile = "DatabaseSenior.txt"

 gender = input("Are you [M]ale or [F]emale?").upper()

 while gender not in {'M', 'F'}:

 print("Please Only Enter M Or F.")

 gender = str(input("Are you [M]ale or [F]emale?")).upper()

 location = input("What country are you from? (UK)").upper()

 while location not in {'ENGLAND', 'SCOTLAND', 'WALES', 'NORTHERN IRELAND'}:

 print("Please Only Enter A Valid Country Within The UK.")

 location = input("What country are you from?").upper()

 #Compilation of inputs into a single line format

 userinfo = name + " " + str(age) + " " + gender + " " + location + " " + (time.strftime("%d/%m/%Y")) + " " + (time.strftime("%H:%M:%S")) + '\n'

 #Opening and writing value of the userinfo variable to the appropriate text file

 file = open(infofile, 'a')

 file.write(userinfo)

 file.close()

 file = open(infofile)

 lines = file.readlines()

 lines.sort()

 file.close()

 提前谢谢。在

本文系转载,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文系转载前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档