วิธีโปรแกรมภาษาไพธอน

รหัสตัวอย่าง

8
0

ปลั๊กอินสำหรับไพธอนสำหรับวง

#to print number from 1 to 10
for i in range(1,11):
    print(i)

#to print a list
l = [1,2,3,4]
for i in l:
    print(i)

r = ["a","b","c","d","e"]
s = [1,2,3,4,5]

#print two list with the help of zip function
for p,q in zip(r,s):
    print(p,q)
6
0

ปลั๊กอินสำหรับไพธอนสำหรับวง

words=['zero','one','two']
for operator, word in enumerate(words):
	print(word, operator)

หน้าคล้ายกัน

คล้ายกันหน้ากับตัวอย่าง

ในภาษาอื่นๆ

หน้านี้อยู่ในภาษาอื่นๆ

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

ดังอยู่ในนี้หมวดหมู่

ดังหน้ากับตัวอย่างอยู่ในหมวดหมู่