Python input error:
I am trying to run a python script and take input but I am getting this error:
Enter the name: a
Traceback (most recent call last):
File "socket_scanner.py", line 6, in <module>
target = input('Enter the name: ')
File "<string>", line 1, in <module>
NameError: name 'a' is not defined
Code:
import pandas
name = input(‘Enter the name’)