what is result of this code? a =int(1) b=4 a=str(a) print(a + str(b))
Answers
Answered by
0
Answer:
Output will be : 14
Explanation:
Since 1 and 4 both are type cased into string hence both the string will be concatenated
Answered by
0
Answer:
you haven't specified str() function.
so we can't answer
Similar questions