0
Not printing Function! HELP!!!!
def getReady(): print("Enter an employee name or ",XXX, "to quit") input(employeeName) return print(getReady)
5 Réponses
+ 1
Hello Christian Sandoval, I think you are trying to achieve this :
employeeName = input() or 'XXX'
def getReady(name):
print('Employee name is : ', name)
getReady(employeeName)
0
What exactly are you trying to print?
0
I was wanting to run the function to see if it works
0
when you call a function it needs ()
and since the print call is IN the function, no need to call print on the function itll look like
getReady()