Crash Course on Python Coursera Week 3- Full solved Google IT Automation with Python 2022
Module 3 Graded Assessment
For Video Explaination :
Nice job! You're really getting the hang of what goes into the while loops!
Great job! You're working the "for" loops the way they're supposed to be done!
Woohoo! You've cracked the code of writing code!
Awesome! You've stepped up to the challenge of one of the more complex coding practices, nested loops!
You nailed it! You've figured out all of the situations that need to be considered!
Woohoo! You’re looping through the numbers backwards and forwards, like a pro!
Well done! The variable year needs to be initialized prior to being used in the while loop.
You got it! The upper limit of a range isn’t included, which means that the loop stops before reaching it. The increment is 3, so the loop stops when x reaches 7.
Great job! The upper limit of a range isn’t included, which means that the outer loop goes up to 9, so the highest upper limit for the inner loop is 9, which is also not included.
Excellent! This function is looking for one argument, and the list of strings is just one argument.