Python输出基础
输出基础输出:print("输出内容",“输出内容”)
python在输出的时候,遇到逗号“,”会输出一个空格“ ”;
输入:变量n=input(“提示用户输入的内容”)
print('n =',123) //输出整数型
print('f =
...
Welcome