当前位置:   article > 正文

Day 文件读写操作,读入文件并且写入文件_day 文件 python

day 文件 python

1.读入文件并检查你的生日四位数字在不在文件中

  1. file_name='data.txt'
  2. birthday = input('请输入你的4位数生日:')
  3. data_str = ''
  4. with open(file_name) as data:
  5. data_strs = data.readlines()
  6. for data in data_strs:
  7. data_str += data.strip()
  8. # print(data_str)
  9. if birthday in data_str:
  10. print('你的生日在其中')
  11. else:
  12. print('你的生日不在其中!')
  1. file_name = 'study.txt'
  2. with open(file_name,'w') as file:
  3. file.writelines("i love python 3000 times\n")
  4. file.writelines("i love python 3000 times\n")
  5. file.writelines("i love python 3000 times\n")

2.写入文件,并注意在结尾添加换行符

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/171168
推荐阅读
相关标签
  

闽ICP备14008679号