The readings for Tuesday, September 08 are:
Automate the Boring Stuff with Python
Read until you reach while Loop Statements.
Once you have completed these readings, please answer the following questions:
Simplify the following Python code into a single line of code:
if n == 0:
b = True
else:
b = False
Hint: What is the result of n == 0?
Write Python code that prints 'Yeah' if a number n is between the values a and b (inclusive). Otherwise, print 'Nope'.
If you have any questions, comments, or concerns regarding the course, please provide your feedback here.
To submit your response, please edit the reading02/README.md file in your Bitbucket repository.