這樣打有個問題,如果輸入不滿四位就會錯,請問如何解決?
def disp():
for item in a :
print(item,end = " ")
while True :
a=list(map(int,input().split(" ")))
if a[1]/a[0] ==a[2]/a[1] and a[2]/a[1] == a[3]/a[2] :
e = a[3]*(a[1]/a[0])
a.append(e)
disp()