I'm having problems with trying to get python to recognize the latest file.
Take this simple function for example
def printme( str ):
"This prints a passed string into this function"
print(str)
return
I then navigate to the directory and did an
import printme
Ran printme printme.printme("Hello"). It works fine.
I then I updated the function to print Hi. I then remove the module using del printme
def printme( str ):
"This prints a passed string into this function"
print('Hi' + str)
return
Why doesn't python print "Hi" in front of the string?