gpt4 book ai didi

python - 最后导入的文件会覆盖以前文件中的语句。指定导入变量的更好方法?

转载 作者:太空宇宙 更新时间:2023-11-04 11:22:24 26 4
gpt4 key购买 nike

嘿 stackoverflow 社区,

我是这个论坛和 python 开发的新手,我对 Alexa/Python 覆盖不同文件中的相似命名变量有疑问。

在我的语言学习技能中,我希望 Alexa 专门将用户的“开始特定练习” intent 链接到特定练习文件,并从该文件导入介绍、关键字和答案以回馈给用户。

我的导入问题是 Python 使用最后导入的文件并覆盖先前文件的语句。

我知道我可能会根据实践更改变量名称,但那样我就不必创建很多单独的处理程序函数来将用户 intent 链接到特定文件/函数并基本上查看和执行所有一样吗?

有没有更好的方法可以更有效地在导入时或在函数内部指定这些变量?

导入文件和变量

from übung_1 import intro_1, keywords_1, real_1
from übung_2 import intro_1, keywords_1, real_1

使用变量

def get_practice_response(practice_number):
print("get_practice_response")
session_attributes = {}
card_title = "Übung"
number = randint(0, len(keywords_1))
print(intro_1 + keywords_1[number])
speech_output = intro_1 + keywords_1[number]
session_attributes["answer"] = real_1[number]
session_attributes["practice_number"] = practice_number
session_attributes["keyword"] = keywords_1[number]
reprompt_text = "test"
should_end_session = False
return build_response(session_attributes, build_speechlet_response(
card_title, speech_output, reprompt_text, should_end_session))

我希望给出特别要求的文件的内容,而不是最近文件中的可变内容。

遗憾的是,我还没有找到解决这个特定问题的方法,希望有人能帮我指出正确的方向。非常感谢您。

最佳答案

像这样导入模块可能最简单:

import übung_1
import übung_2

引用内容为übung_1.intro_1übung_2.intro_1übung_1.keywords_1等。

关于python - 最后导入的文件会覆盖以前文件中的语句。指定导入变量的更好方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55687951/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com