When there is a print statement inside a function, it is not printing. I dont understand what is going wrong.
def test():
print("please print this")
return "return this"
And, my main function is like this:
if __name__ == "__main__":
classwhereiwrotefunction.test()
When I use a debugger, and try to store the return value in a variable, it does show the value. But, does not print it.