输入
s = input()
s 为字符串
只能输入一串字符串
s = int(input())
s 为整型
只能输入一个数字
a, b = input().split()
能在一行输入a,b两串字符串
a, b = map(int, input().split())
能在一行输入a,b两个整型数字
a = list(map(int, input().split()))
在一行输入n个整型数字,并形成一维数组(列表)
a = [[int(j) for j in input().split()] for i in range(n)]
输入二维数组
n行j列