- This event has passed.
10 AM Python Level 1
October 12, 2019 @ 10:00 am - 11:00 am
- We reviewed Hangman project.
- We continued with Hangman project.
- We added the ability to check if user guess the whole word correctly or not.
- We added the ability to update the clue list.
- Homework:
- When there is no more ? inside clue, you need to break from the loop. hint look at below code to do the homework
-
name =['g','a','m','a','s'] if '?' not in name: print('Hooray no more ?')
-
- When there is no more ? inside clue, you need to break from the loop. hint look at below code to do the homework