How many str objects are created with in the following Python code ?
str
a = "hello" b = a def fun(s): return s+" world" c = fun(b)
1
2
3
4