请描述python语言中输出“hello world”的几种方式

如题所述

第1个回答  2020-09-30
print('hello world')
print('{} {}'.format('hello','world'))
print('%s %s'%('hello','world'))
相似回答