This is my first time using python and I'm having trouble getting it to print the way I want. I would like the output to be side by side. It might be because I'm tired, but I cant seem to figure this out.
My Code:
def cToF():
c = 0
while c <= 100:
print(c * 9 / 5 + 32)
c += 1
def fToC():
f = 32
while f <= 212:
print((f - 32) / 1.8)
f += 1
print (cToF(),fToC())
OUTPUT:
all of the numbers from cToF()
all of the numbers from fToC()
How I would like the OUTPUT:
all of the numbers from cToF() all of the numbers from fToC()