这里以python3.9来讲解
文章目录
python的基本输入
输入字符串
a=input()
输入数字
a=eval(input())
输入多个数字,中间用(特殊符号)隔开。
a=map(int,input().split())
split后面的括号中什么不填,默认为空格,split("")双引号中间的内容为间隔的符号。
python的基本输出
输出字符
print("hello world")
输出变量,默认间隔为空格
a,b,c=map(int,input().split())
print(a,b,c)
输出变量,更改间隔符号
a,b,c=map(int,input().split())
print(a,b,c,sep="")
sep=“” 引号中间为空则输出去掉空格,引号中间为(,)则间隔为逗号。
多次输出,末尾不换行,并确定间隔符
a,b,c=map(int,input().split())
print(a,end=",")
print(b,end=",")
print(c,end=",")