我能帮你做些啥?
面向对象的编程语言
anaconda镜像下载地址:https://mirrors.bfsu.edu.cn/anaconda/archive/?C=M&O=D
PyCharm 的下载地址:http://www.jetbrains.com/pycharm/download/#section=windows
print()函数
fp=open('E:/text.text','a+')
print('helloworld',file=fp)
fp.close()
反斜杠+想要实现转义功能首字母
换行:\n
回车:\r
水平制表符:\t
退格:\b
原字符,不希望字符串中的转义字符起作用,就使用原字符,就是在字符串之前加上r或R
例:print(r’hello\nworld’)
输出:hello\nworld
注意:结尾不能是单独一个反斜杠
-------杨淑娟老师讲Python,笔记记录-----------