python换行和转义(新手)

1;以下是新手对换行的认知:
print(’------------------I love fishc studio’)
temp = input(‘Why not guess which number is tortoise thinking?’)
guess = int(temp)
if guess == 8:
print(‘WTF?Are you a worm in tortoise\’stomachache?’)
print(‘Emm,you won’t get a praise.’)
else:
if guess > 8:
print(‘Too big,dear brother’)
else:
print(‘Too small,guy.’)
print(‘Game’s over,bye~’)
如上代码,运行起来效果如图python换行和转义(新手)python换行和转义(新手)
我的答案是8或其他数字,但我想使输入时可以在下一行:python换行和转义(新手)
但是点击enter后失败了,经查阅,1.使用(’’’ ‘’’) 或(""" “”")代替(’’)("")之后,在想换行的地方打enter键即可2.使用换行符\n即可。](https://img-blog.csdnimg.cn/20191208170719420.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80NTQ4OTEwMw==,size_16,color_FFFFFF,t_70)python换行和转义(新手)
python换行和转义(新手)python换行和转义(新手)
即可。

2;转义;*
print(“Hi , are you Lily’s mother?”)可以。
print(‘hi , are you Lily’s mother?’)不可以。---------------------------显示:
SyntaxError

invalid syntax

读取有问题。
print(‘hi , are you Lily’s mother?’)
添加转义符号后可以。