Question: In Python Deliverable Research your programming environments debugging capabilities.(Currently using Visual Studio Code) 10 points submit screenshots of a break point being set and you
In Python
Deliverable
Research your programming environments debugging capabilities.(Currently using Visual Studio Code)
10 points submit screenshots of a break point being set and you in debug mode evaluating one of your assignment programs such as setting a break point running the program and completing a step over.
10 points submit a screenshot of a watch you added to evaluate as your debugging
Here is some code I have completed that this can be done with:
def is_prime(num):
if num < 2:
return False
for i in range(2,num):
if num % i == 0:
return False
return True
print ("Full list of prime numbers between 1 and 100:")
for num in range (1, 101):
if is_prime(num):
print(num)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
