« All Events
5 PM – Intro To Python – Gamas
October 17, 2020 @ 5:00 pm - 6:00 pm
- Homework:
- Create a function “random_number” no parameter. This function will return a random 3 digits between 100 to 999.
- Create a function “random_password” no parameter. This function will do the following:
- Call random_adjective function UPPER
- Call random_action function LOWER
- Call random_noun function CAPITALIZE
- Call random_number function
- combine all of them together and return the combination of these 4 results.
- Call the “random_password” function and print to the shell.