print('hello world!')
print('hello', 'world!') # 逗号自动添加默认的分隔符:空格
print('hello' + 'world!') # 加号表示字符拼接
print('hello', 'world', sep='') # 单词间用分隔
print('#' * 50) # *号表示重复50遍
print('how are you?', end='') # 默认print会打印回车,end=''表示不要回车
print('hello world!')
print('hello', 'world!')
print('hello' + 'world!')
print('a', 'b', sep='&&&')
print('#' * 50)
print('how are you?', end='')