Jump to

v12-l1-createStr

How many str objects are created with in the following Python code ?

a = "hello"
b = a

def fun(s):
    return s+" world"

c = fun(b)

???