I would like a string with var1 on the first line and var2 on second line. It would look like this printed:
Var1
Var2
would the code be
product = str(var1 /n + var2)
print(product)
?
I would like a string with var1 on the first line and var2 on second line. It would look like this printed:
Var1
Var2
would the code be
product = str(var1 /n + var2)
print(product)
?