def string_handling(): a = "hello " b = "world" c = 5 print(a + b) print(float(4 + 4 + c)) string_handling()