- 学习目标:熟练使用print()函数
1.print()函数可以输出的内容:
字符串、数字、运算符表达式:
下面展示一些 代码
。
#输出数字
print(520)
print(23.4)
#输出字符串
print("hello world")#必须要加单引号双引号
#输出表达式
print(3+1)
2.print()函数可以输出到的目的地:
(1)显示器 (2)文件
#将数据输出到文件中
fp=open('D:/text.txt','a+')#若没有该文件则创建,只能追加不能删改
print('hello world',file=fp)#这里一定要加file=fp否则无法将字符打印到文件中
fp.close
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)