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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!