Loop dengan variabel yang diperhitungkan

n = 1
while n <= 5:
    print(n * 2)
    n = n + 1
Important Impala