+ 1
Why does this not work?
6 Respuestas
+ 7
Or:
print("{} {}".format(x, y))
if the '+' was just to join x and y
+ 8
This works:
print("{} + {}".format(x, y))
+ 4
print("{x} {y}".format.......)
+ 4
print(int(x) + y)
+ 1
How can I add them up?
0
Thanks!