本页目录

输入input()

发布时间:

1,一行接收一个值:

a=input()
print(a)

2 ,一行接收多个值:

a,b,c=map(int input().split) int 为变量的数据类型