Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional IPhone And IPad Database Application Programming

Authors: Patrick Alessi

1st Edition

0470636173, 978-0470636176

More Books

Students also viewed these Databases questions

Question

2. Do you find change a. invigorating? b. stressful? _______

Answered: 1 week ago

Question

10. Are you a. a leader? b. a follower? _______

Answered: 1 week ago