基础习题1——print

引号内,空格就表示空格,引号外,逗号表示空格

print('100+200 =',100 + 200)===100+200 = 300

print('hello','world')===hello world

print('hello,world')===hello,world



 
原文地址:https://www.cnblogs.com/wushujun/p/11555998.html