A single line contains integers separated by space
lst=[]
for i in range(2,9):
num = int(input())
lst.append(num)
print(*lst,end=" ")
this code is running fine python ide ...why is this showing error in here
A single line contains integers separated by space
lst=[]
for i in range(2,9):
num = int(input())
lst.append(num)
print(*lst,end=" ")
this code is running fine python ide ...why is this showing error in here