Crash Course on Python Coursera Week 3

Crash Course on Python Coursera Week 3- Full solved Google IT Automation with Python 2022



Module 3 Graded Assessment

Latest Submission Grade 100%

For Video Explaination :



Correct

Nice job! You're really getting the hang of what goes into the while loops!

Correct

Great job! You're working the "for" loops the way they're supposed to be done!

Correct

Woohoo! You've cracked the code of writing code!

Correct

Awesome! You've stepped up to the challenge of one of the more complex coding practices, nested loops!

Correct

You nailed it! You've figured out all of the situations that need to be considered!

Correct

Woohoo! You’re looping through the numbers backwards and forwards, like a pro!

Correct

Well done! The variable year needs to be initialized prior to being used in the while loop.

7
Correct

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.

8
Correct

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.

Correct

Excellent! This function is looking for one argument, and the list of strings is just one argument.