Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature currently requires accessing the site using the built-in Safari browser.
value = 10
print "here is the value : " + str(value) + "\n"
value = 10
print "here is the value : " , str(value) , "\n"
I have been googling but haven't been able to find a answer.
If I put this in my code
value = 10
print("here is the value :",value,"\n")
This is the output
('here is the value :', 10, '\n')
why is the output not just
here is the value : 10