python--print输出函数
Posted k & v
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python--print输出函数相关的知识,希望对你有一定的参考价值。
print输出函数
print(520)#输出数字
print(‘hello word’)#输出字符串
print(3+5) #进行运算
#将数据输出到文件中,注1盘符 2使用file=fd
fd=open(‘D:/text.txt’,‘a+’) #a+:如果文件不存在则创建,存在则在文件的后面继续追加
print(‘hello word’,file=fd)
fd.close()
#不进行换行输出
print(‘hello’,‘word’,‘python’)
以上是关于python--print输出函数的主要内容,如果未能解决你的问题,请参考以下文章