Unable to view the drawing in the lecture video on Task 11
unable to view the image for task 14
unable to view the image for task 21
Unable to view the drawing in the lecture video on Task 11
unable to view the image for task 14
unable to view the image for task 21
The question for Task 12 is correct.
random.randint() range for the stop value do not need to +1 as it will be include.
You can try using it will a small range like random.randint(0,1)
Task 3, Task 4, Task 7, Task 8, Task 18, Task 19, Task 20, Task 21 - The hint has print x
and print y
without the brackets. This results in a SyntaxError
Task 6. print(range(0,10))
and print(range(10))
does not print the range for this version of python. The output is just range(0, 10)
.
Task 15, in the hint, n= random.randint(50,200)
should be inside the loop.
The same line is also in Task 16, when generating a random number is not required for the question.