输出函数Print

天数
Day2
URL
Files & media
输出函数Print.py
#可以输出数字 print(520) #可以输出字符串 print('hello world') print("hello world") #可以输出含有运算符的表达式 print(3+4) #将数据输出文件中,注意点,1,所指定的盘符存在 ;2 使用file=fp fp=open('/Users/bairimengyushi/Downloads/text.txt','a+') #a+ 如果文件不存在就创建,存在就在文件内容的后面继续追加 print('hello world',file=fp) fp.close() #不进行换行输出 (输出内容在一行当中) print('hello','world','Python')