第一章:关于print函数
*#代码作者:JAZZ
#编写时间:2022/5/11 19:37
#代码名称:
#代码功能:
#print()输出数字520的方法(包括小数)*
print(520)
print(3.88)
520
3.88
#print()输出字符串的方法:单引号双引号都可以,必须加引号
print(‘what the’)
print(“what the”)
print(“‘what the’”)
what the
what the
‘what the’
#print()输出字含有运算符的表达式的方法
print(5+20)
print(4.6+3.8)
25
8.399999999999999
#将数据输出到文件当中
#以下面这种方法的话,F盘中的text里面是没有内容的所以这方法需要改进
#fp=open(‘E:/pyworks/text.txt’,‘a+’)#a+的意思是以读写的形式输进去数据,没有这个文件的话就创建,有的话就输入
#print(‘helloworld’,fp)
#fp.close()
#以这种方法的话,F盘中的text里面是没有内容的所以这方法需要改进,改进方法是:加个“file=
fp=open(‘E:/pyworks/text.txt’,‘a+’)#a+的意思是以读写的形式输进去数据,没有这个文件的话就创建,有的话就输入,写入的次数随运行程序的次数增加(每运行一次就写一次)
print(‘helloworld’,file=fp)
fp.close()
#不进行换行输出的方法(输出全在一行里面)
print(“hello”,‘world’,‘python’)
hello world python