Advertisement
DrAungWinHtut

ListEg

Apr 22nd, 2022
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.38 KB | None | 0 0
  1. from microbit import *
  2.  
  3. student_list = [
  4.     "aungaung",
  5.     "maungmaung",
  6.     "mama"
  7.     ]
  8.  
  9. ages = [
  10.     9,
  11.     12,
  12.     13
  13.     ]
  14.  
  15. while True:
  16.     display.scroll(student_list[0])
  17.     sleep(1000)
  18.     display.scroll(ages[0])
  19.     sleep(1000)
  20.     if ages[0] < 10:
  21.         display.show(Image.HEART_SMALL)
  22.     else:
  23.         display.show(Image.HEART)
  24.     sleep(5000)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement