@ 爱学习的DUO
- 1 print()函数
- 1.1 输出到控制台
- 1.1.1 输出数字
- 1.1.2 输出字符串
- 1.1.3 输出表达式
- 1.2 输出到文件中
- 2 转义字符
- 2.1 换行字符 \n
- 2.2 tab字符 \t
- 3 查看python的key words
- 4 常见数据类型
- 4.1 整数型 int
- 4.2 浮点型 float
- 4.3 布尔型(True、False)
- 4.4 字符串型 str
print(520) #520
1.1.2 输出字符串
print('hello world') #hello world
1.1.3 输出表达式
print(3*5) #15
1.2 输出到文件中
fp=open('D:/pp/chuangjian.txt','a+') #打开一个文件
print('爱学习的阿朵',file=fp)
fp.close()
note:
(1)a+表示文件不存在就创建 ,存在的话就在内容上继续追加;
(2)要注明:file=?
(3)路径的盘要存在
print('good\nluck')
- 输出结果
print('good\tluck')
- 输出结果
import keyword
print(keyword.kwlist)
- 输出结果
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)