Ubuntu 下VSCODE python输入问题

#coding = utf-8
me=input("Whatur your name?")
print(me)
以上为我的代码
下面是问题:
Whatur your name?f
Traceback (most recent call last):
File "/media/lvgr/编程/Python/python program/Hel/Hello.py", line 2, in
me=input("Whatur your name?")
File "", line 1, in
NameError: name 'f' is not defined这个问题
有哪位大佬能回答有

你应该是在python2环境下运行的,输入字符的时候加上双引号就没问题了。另外Python3中是没有这个问题的

 开头用
 # -*- coding: utf-8 -*-

NameError: name 'f' is not defined这个问题me=input("Whatur your name?")

还有一个选择就是在python2里用raw_input("whats your name")