Python简介
解释型语言,没有编译环节,交互型语言,面向对象
下载安装Python,Pycharm
配置解释器
Python中的输出函数
Print()函数可以输出哪些内容?
- print()函数输出的内容可以是数字
- print()函数输出的内容可以是字符串
- print()函数输出的内容可以是含有运算符的表达式
print()函数可以将内容输出的目的地
- 显示器
- 文件
print()函数的输出形式
- 换行
- 不换行
print()函数说明
print(520)
print(98.5)
print('helloworld')
print("helloworld")
print(3+1)
fp=open('E:/text.txt','a+')
print('helloworld',file=fp)
fp.close()
print('hello','world','Python')
转义字符
什么是转义字符
为什么需要转义字符?
print('hello\nworld')
print('hello\tworld')
print('helloooo\tworld')
print('hello\rworld')
print('hello\bworld')
print('http:\\\\www.baidu.com')
print('老师说:\'大家好\'')
print(r'hello\nworld')
print(r'hello\nworld\\')
print(r'hello\nworld')
print(r'hello\nworld\\')
|