2. Practice_tasks_2

Tasks

  1. Write code to repetitively scroll (quickly) each character in ‘go team’ using a for-loop, when the A-button is pressed.

  2. Write code to repetitively scroll (quickly) each sport in the list ['swimming', 'rowing', 'canoeing'] using a for-loop, when the B-button is pressed.

  3. Write code in a while True loop to respond to button pressing such that when A is pressed each character in ‘go team’ is scrolled quickly using a for-loop, when B is pressed each sport in the list ['swimming', 'rowing', 'canoeing'] is scrolled quickly using a for-loop, and when no button is pressed the screen is cleared.

  4. Write code in a while True loop to respond to button pressing such that when A is pressed the numbers 1,3,5,7,9 are scrolled quickly using the range function, when B is pressed the numbers 8,6,4,2,0 are scrolled quickly using the range function, and when no button is pressed the screen is cleared.

  5. Write code to scroll 99 100 101 0 1 2 in three different ways: using a string, using a list and using 2 range functions.