如何在 vs studio 代码中导入自己的对象?

How do I import my own object in vs studio code?

我正在尝试导入我为通讯录程序创建的 Human 对象,我在 VS Studio Code 中执行此操作,但它给了我一个错误:

Import "Human" could not be resolved

我试着在 pycharm 中制作程序,它导入得很好,我什至完成了程序。在寻找 VS Studio Code 版本的解决方案时,我发现了一些东西,比如添加

"python.autoComplete.extraPaths": ["./**"],

我的 settings.json 我做了,还有我在 google 上发现的其他一些东西,但没有任何帮助。

VS Studio 代码:

from Human import Human
#from Contact_Book_Project.Human import Human # auto generated, Not sure how it is different but i do have these 2 classes in a folder called Contact_Book_Project

book = []

def main():
    while (True):

        choice = int(input("Press 1 to add someone to your Contact Book\n2 to remove someone from the book\n3 to find someone\n4 to list everyone\n5 to exit\n"))

        if (choice == 5):
            break
        elif (choice == 1):
            name = input("Name: ")
            phoneNum = input("Phone Number: ")
            address = input("Address: ")

            person = Human(name, phoneNum, address)

            addPerson(person)

def addPerson(person):
    book.append(person)

if __name__ == "__main__":
    main()
class Human:
    def __init__(self, name, phone_Number, address):
        self.Name = name
        self.Phone_Number = phone_Number
        self.Address = address

    def getName(self):
        return self.Name

    def getPhoneNumber(self):
        return self.Phone_Number

    def getAddress(self):
        return self.Address

PyCharm代码:

from Human import Human

book = []


def main():
    while (True):

        try:
            choice = int(input(
                "Press 1 to add someone to your Contact Book\n2 to remove someone from the book\n3 to find someone\n4 to "
                "list everyone\n5 to exit\n"))

            if (choice == 5):
                break

            elif (choice == 1):
                name = input("Name: ")
                phoneNum = input("Phone Number: ")
                address = input("Address: ")

                person = Human(name, phoneNum, address)

                addPerson(person)

            elif (choice == 2):
                name = input("Enter name of person to remove: ")

                temp = 0
                for i in book:
                    if i.getName() == name:
                        book.pop(temp)
                        print(i.getName() + " removed.")
                        break

                    temp += 1

#            elif (choice == 3):
#                name = input("Enter name of person to check if they are in your contact book and retrieve their "
#                             "information: ")
#
#                if name in book:
#                    temp = book.__getitem__(name)
#                    print(
#                        "Name: " + temp.getName() + "\nPhone Number: " + temp.getPhoneNumber() + "\nAddress: " + temp.getAddress())
#                else:
#                    print(name + " does not exist in your contact book.")

            elif (choice == 4):
                for p in book:
                    print(
                        "Name: " + p.getName() + "\nPhone Number: " + p.getPhoneNumber() + "\nAddress: " + p.getAddress() + "\n")

        except ValueError:
            print("\nInvalid input.\n")

def addPerson(person):
    book.append(person)

if __name__ == '__main__':
    main()

两者都使用相同的 人类 class。我怎样才能解决这个问题?为什么它在 VS Studio 中抛出错误但在 Pycharm 中工作?

也许尝试将 VS Code 定向到 Human 模块的确切位置:

import sys
sys.path.append('file path to Human.py') # Add file path to 'Human.py' here
from Human import Human