i am completely a newbie and learning python in vscode i dont understand why im getting this message help me to fix it
ho = input('what is your name')
print(ho)
error
Traceback (most recent call last):
File "/Users/sar/Desktop/python/csp1.py", line 1, in <module>
ho = input('what is your name')
File "<string>", line 1, in <module>
NameError: name 'f' is not defined
expecting;
ho = input('what is your name')
print(ho)
output;
what is your name sar
sar