User:Bohye Woo/Prototyping 02: Difference between revisions

From XPUB & Lens-Based wiki
(Created page with "* import time <source lang=python> import time l = ["1111111", "2", "3122", "4", "5"] # [0]. [1], [2], [3], [4] i = 0 while True: for person in l: if len(person) > 4: #...")
 
No edit summary
Line 5: Line 5:
l = ["1111111", "2", "3122", "4", "5"] # [0]. [1], [2], [3], [4]
l = ["1111111", "2", "3122", "4", "5"] # [0]. [1], [2], [3], [4]
i = 0
i = 0
[[File:Python if else.png|frameless|right]]


while True:
while True:
Line 25: Line 26:


</source>
</source>
[[File:Python if else.png|thumbnail|right|Python if, elif, else]]

Revision as of 17:23, 21 January 2019

  • import time
import time

l = ["1111111", "2", "3122", "4", "5"] # [0]. [1], [2], [3], [4]
i = 0
[[File:Python if else.png|frameless|right]]

while True:

	for person in l:
		if len(person) > 4: # if the length of [0] item is bigger than 4 
			print(person, "bigger than") 

		elif len(person) == 4:
			print("4")

		else:
			print(person, "smaller than")

		time.sleep(0.1)
		
	print('looping', i)
	i = i + 1
	time.sleep(1)
Python if, elif, else