一、print函数#1、用法print(‘hello world!’)name = '小白'print(name)#2、用法age = 18gender = 'boy'print(age,gender)print()为空输出