I am a new Python programmer. I have a simple problem when try to concatenating strings and numbers in Python. For example, I create this this script : a = 'I have ' b = 5 c = 'apples' d = a + b + c print d When I try to running this script,