Python
Hi, unable to find 10 dollors separatley. Output is 10dollors.
Here is the code.
y = 10
print (str (y) + "dollors")
print (str (y) + "dollors")
1 answers ( 0 marked as helpful)
Hi, I have got the answer myself. Here is the correct answer.
y = 10
print (str (y) + " dollors")
print (str (y) + " dollors")