当前位置:   article > 正文

python学习笔记print的几种方法

python学习笔记print的几种方法

#玩家寄语 :玩的开心呀!
#开发时间:2021/4/17 15:47

 #输出数字
print(520)
print(98.6)
  • 1
  • 2
  • 3
#输出字符串
print('hello')
print("helloworld")


#输出计算结果
print(3+2)


#将数据输出到文件中
#####################################################################
#open是打开,后面‘’中是文件的路径,a+表示以读写的方式打开文件,文件不存在就创建,有就在原有内容上追加
#fp=open('D:/soft/test.txt','a+')#把这个起一个名字,即赋值给fp
#print('hellowrold',fp)
#fp.close()#读写结束之后关闭
########################################################################
#可以发现上述写法是没有写入内容的
#原因,将数据写入文件有两个关键点。1、要使用file=fp的形式才能写入。2、所指定的盘要真实存在
fp=open('D:/soft/test.txt','a+')
print("helloworld",file=fp)
fp.close()
#以上写法才是正确的,而且可以看到整篇代码运行了几次,就会有几个helloword


#不进行换行输出,输出内容在一行
print('hello','hi','byb')



  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/721829
推荐阅读
相关标签
  

闽ICP备14008679号