python中如何用write函数写入文件?
829次观看
标签:
如何用
函数
文件
老师回答
1、用write函数写入文件
poem = "This is a poem"
dirs = '/Users/joseph/work/python/'
filename = 'poem.txt'
path = dirs + filename
f = open(path, 'w')
f.write(poem)
f.close()
2、设置字体大小
实例:将字体大小更改为16(默认值为8)
import turtle as t
t.write('中国', font=("Arial", 16))
©本文版权归环球青藤所有,任何形式转载请联系我们。
免费直播
精选课程
相关推荐