\n :换⾏。
    \t :制表符,⼀个tab键(4个空格)的距离。

    学习代码如下:

    1. print('hello')
    2. print('world')
    3. print('hello\nPython')
    4. print('\tabcd')

    运行结果如下:
    image.png
    08-转义字符.py