当前位置:   article > 正文

《python程序设计教程》第7章 文件操作 习题7答案_■3.创建一个exercise7 3.xisx文件, 在c5单元格写入字符串“我喜欢编程”。然

■3.创建一个exercise7 3.xisx文件, 在c5单元格写入字符串“我喜欢编程”。然

1.编写程序生成九九乘法表,并将之写入到文本文件exercise7_1.txt中。程序保存为exercise7_1.py。

  1. f = open(r'd:\exercise7_1.txt', 'a+')
  2. with open('d:\\exercise7_1.txt','a+') as f:
  3. for j in range(1,10):
  4. for i in range(1,j+1):
  5. f.write(str(i)+'*'+str(j)+ '=' + str(i*j) + '\t')
  6. f.write('\n')
  7. f.close()

2.编写程序,提示用户输入字符串。将所输入的字符串,以及对应字符串的长度写入exercise7_2.txt中。程序保存为exercise7_2.py。

  1. f = open(r'd:\exercise7_2.txt', 'a+')
  2. with open('d:\\exercise7_2.txt','a+') as f:
  3. s=input("请输入一个字符串:")
  4. f.write("输入的字符串是:" + str(s) +"\n"+ "字符串的长度是:" + str(len(s)))
  5. f.close()

3.创建一个exercise7_3.xlsx文件,在C5单元格写入字符串“我喜欢编程”。程序保存为exercise7_3.py。

  1. import openpyxl
  2. workbook=openpyxl.Workbook()
  3. sheet1=workbook.active
  4. sheet1.cell(row=5,column=3).value="我喜欢编程"
  5. workbook.save("d:\\exercise7_3.xlsx")

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

闽ICP备14008679号