I am very new at python. I am wondering of the easiest way or alternative to defining a function as a string, and then printing said string in another print line, such as demonstrated here:
def world():
print("World!")
print("Hello " + world())
I am sure that this is an easy fix/search, but I cannot seem to find what I am searching for. Thank you!