Commit c0551f52 by BellCodeEditor

auto save

parent dc70412a
Showing with 19 additions and 0 deletions
try:
age = int(input('你几岁了?'))
except :
print('写整数!')
else:
if age < 18:
print('不能喝酒!')
print('没了。')
\ No newline at end of file
# with open(r'C:\Users\Administrator\Desktop\test.txt','a',encoding='UTF-8') as f:
# f.write('\n小强:12本\n李明:15本')
with open(r'C:\Users\Administrator\Desktop\test.txt','r',encoding='UTF-8') as f:
for i in f:
print(i)
if '小强:12本'in i:
print('找到')
print(type(f))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment