Check this out. http://www.python-course.eu/python3_formatted_output.php
fruit = "orange"
say = "hey eating {0} is a good idea".format(fruit)
print(say)
Check this out. http://www.python-course.eu/python3_formatted_output.php
fruit = "orange"
say = "hey eating {0} is a good idea".format(fruit)
print(say)