Question: def sum(myData): total = 0 # set total = 0 try: for num in range(myData): total = total + num except: print(>>> invalid data <
def sum(myData):
total = 0 # set total = 0
try:
for num in range(myData):
total = total + num
except:
print(">>> invalid data <<<")
return total
# *******************
data = 4
print(sum(data))
"""
If you run this code, it will cause error.
Error: wrong data type
----------------------
data2 = 'California'
print (sum(data2))
"""
- What outputs would be generated by the following Python segments?
Explain verbally
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
