User:Bohye Woo/Prototyping 02: Difference between revisions
No edit summary |
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 | ||
while True: | while True: |
Revision as of 23:31, 21 January 2019
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: # 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)