“cincin untuk loop” Kode Jawaban

cincin untuk loop

# print numbers from 1 to 10
for x = 1 to 10  see x + nl  next
Joker

cincin untuk loop

# print even numbers from 0 to 10
for x = 0 to 10 step 2
        see x + nl
next
Joker

cincin untuk loop

for identifier=expression to expression [step expression]
        Block of statements
next
Joker

cincin untuk loop

# Dynamic loop
See "Start : " give nStart
See "End   : " give nEnd
See "Step  : " give nStep
For x = nStart to nEnd Step nStep
        see x + nl
Next
Joker

cincin untuk loop

# print even numbers from 10 to 0
for x = 10 to 0 step -2
        see x + nl
next
Joker

berdering untuk di loop

aList = 1:10    # create list contains numbers from 1 to 10
for x in aList  see x + nl  next  # print numbers from 1 to 10
Joker

Jawaban yang mirip dengan “cincin untuk loop”

Pertanyaan yang mirip dengan “cincin untuk loop”

Lebih banyak jawaban terkait untuk “cincin untuk loop” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya