python最近的几个题学到的输入方式

输入方式

a, b, c = map(float, input().split()) 

alist = list(map(int, input().split())) 
import numpy
A=numpy.array(list(map(int, input().split())))

猜你喜欢

转载自www.cnblogs.com/SunChuangYu/p/12452645.html