Python 루프 기능

코드 예제

5
0

python 을 위한 루프

A for loop iterates through an iterable, may that be an array, a string, or a range of numbers
#Example:
myArr = ["string 1", "string 2"]
for x in myArr:
  print(x)
#Returns "string 1", "string 2". In here the x is an iterator and does not need to be defined.
0
0

루 python

for i in range(0):
  pass
-2
0

python 루프 기능

x = None # you can change this
y = None # you can change this

while x < y:
	#do something
	break
    

다른 언어로

이 페이지는 다른 언어로되어 있습니다

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................