Question: Please redesign this python program to be more complex in anyway you see fit. Be sure to create a new flowchart and table. def main():
Please redesign this python program to be more complex in anyway you see fit. Be sure to create a new flowchart and table.
def main():
'''
Program accepts an integer and sums the integers from 1 to 10 using a for loop
'''
num = int(input( ''Please enter a integer: '' ))
sum_num = 0
for i in range(1, num+1):
sum_num += i
print(sum_num)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
