Tulis program Python untuk mencetak nomor dari 1 hingga 10000 saat loop

i = 1
while(i<=10):
    print(i)
    i += 1
Fair Fish