方法一:
str1=‘Hello World!’ 
str2='Hello NewCoder'
print(str1)
print(str2)

方法二:直接加换行
print(str1+'\n'+str2)

方法三:使用sep参数
print(str1,str2,sep='\n')