print 的使用
# study_python
# xxx
# print 的使用
# 1 输出数字
print(1)
print(1)
print(1)
# 2 输出字符串
print("hello")
print('world')
# 3 输出含有运算符的表达式
print(1+1+1)
# 4 将数据输出在文件中
# 注意:1 文件所在的盘要存在 2 使用 file = fp(变量名字)
# 'a+' 是指:文件存在就在文件内容的后面进行追加||文件不存在就去创建
# fp = open('D:/test.txt','a+')
# print('helloworld',file=fp)
# fp.close()
fptest = open('D:/test01.txt','a+')
print('helloworld',file=fptest)
fptest.close()
# 5 不进行换行输出(输出内容在同一行中)
# 使用逗号分隔 来实现同一行输出
print('helloworld','1','2')
转义字符
# study_python
# xxx
# 转义字符
# \n
print('hello\nworld')
# \ + 转义功能的首字母 n->newline的首字符表示换行
# \t (占有4个位置)
print('hello\tworld')
# o+3个空格为4个位置
print('helloooo\tworld')
# 4个o为4个位置,所以说再添加4个空格
# \r
print('hello\rworld')
# world将hello覆盖了
print('hello\r111')
# 111将hello覆盖了
# \b:退一个格
print('hello\bworld')
# 将o退没了
print('22\b11')
# 退没了一个2
# \\
print('http:\\www.baidu.com')
print('http:\\\\www.baidu.com')
print('老师说:\'大家好\'')
# 原字符:使字符串中的转义字符不起作用
# 在字符串之前加上r或者R
print(r'hello\nworld')
print(R'hello\nworld')
# 注意:最后一个字符不可以是一个反斜杠
# print(R'hello\nworld\')
# print(r'hello\nworld\')
# 可以是两个反斜杠
print(R'hello\nworld\\')
print(r'hello\nworld\\')