Back

A single line contains integers separated by space

Created 4 years ago
297 Views
3 Comments
HARENPRABUM19ITL110
@HARENPRABUM19ITL110
HARENPRABUM19ITL110
@HARENPRABUM19ITL110Profile is locked. Login

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

Comments (3)
Please login to comment.