1. print('hello')
    2. print('world')
    3. print('hello\nlily')
    4. print('\t早上好')
    5. # \n是转义字符,换行功能,直接加'文本\n文本'
    6. # \t是制表符,代表一个tab键即4个空格的距离