Python的输出函数print()

Python的输出函数print(),第1张

Python的输出函数print()

一、输出到显示器

1.可以输出数字 

        print(1)

2.可以输出字符串,但要''、“”

        print("hello")

        print('hello')

3.可以输出带运算符的表达式

        print(6+1)

二、输出到文件里面

f = open("D:/demo1.txt",'a+')

print(‘hello python’,file=f)

f.close()

注意:1.print()函数里面的flie一定要等于前面定义的变量

2.open()里面的a+、r、w是表示累加、读文件、写文件的意思

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5156848.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存