How do I add space between a string and an integer, and also if i want to print in new line? This is my code, so output will be, 1000normal, but my output should be like this
1000 normal
or
1000
normal
How do I achieve this? Below is code attempt.
w = 40
h = 5
b = (w * (pow(h, 2)))
f1 = "normal"
f2 = "average"
if b >= 500:
print(str(b)+f1)
else:
print(str(b)+f2)