鱼C论坛

 找回密码
 立即注册
查看: 1882|回复: 2

请问为何无法使用

[复制链接]
发表于 2022-6-23 09:31:49 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
simple:
class 主选择():
    user_Input_字符输入 = None

    def logo():
        print("  _                                 _                 _        \n"      
              "| |                                (_)               | |       \n"
              "| | ___  _ __ ___   ___ _ __    ___ _ _ __ ___  _ __ | | ___   \n"
              "| |/ _ \| '_ ` _ \ / _ \ '_ \  / __| | '_ ` _ \| '_ \| |/ _ \  \n"
              " | | (_) | | | | | |  __/ | | | \__ \ | | | | | | |_) | |  __/ \n"
              "|_|\___/|_| |_| |_|\___|_| |_| |___/_|_| |_| |_| .__/|_|\___|  \n"
              "                                     | |                       \n"
              "                                     |_|                        ")

    def 字符输入():
        global user_Input_字符输入
        user_Input_字符输入 = (str(input(">>>")))

        

test:
import simple
from simple import user_Input_字符输入

while True:
        user_Input = (str(input(">>>")))
        if user_Input == "logo":
                simple.主选择.logo()
        
        if user_Input == "字符输入":
                simple.主选择.字符输入()
                print(user_Input_字符输入)

报错是:
Traceback (most recent call last):
  File "G:\python111\Simple\test.py", line 2, in <module>
    from simple import user_Input_字符输入
ImportError: cannot import name 'user_Input_字符输入' from 'simple' (G:\python111\Simple\simple.py)
>>>
请问为啥啊

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-6-23 10:06:09 | 显示全部楼层
这个问题是源于变量作用域的问题,“user_Input_字符输入”这个变量是属于“主选择”这个类的,在 simple 这个文件的变量清单中并没有该变量名,虽然后面的 global 创建了该变量。
可改成
# simple
user_Input_字符输入 = None

class 主选择():

    def logo():
        print("  _                                 _                 _        \n"      
              "| |                                (_)               | |       \n"
              "| | ___  _ __ ___   ___ _ __    ___ _ _ __ ___  _ __ | | ___   \n"
              "| |/ _ \| '_ ` _ \ / _ \ '_ \  / __| | '_ ` _ \| '_ \| |/ _ \  \n"
              " | | (_) | | | | | |  __/ | | | \__ \ | | | | | | |_) | |  __/ \n"
              "|_|\___/|_| |_| |_|\___|_| |_| |___/_|_| |_| |_| .__/|_|\___|  \n"
              "                                     | |                       \n"
              "                                     |_|                        ")

    def 字符输入():
        global user_Input_字符输入
        user_Input_字符输入 = (str(input(">>>")))

        
# test
import simple

while True:
        user_Input = (str(input(">>>")))
        if user_Input == "logo":
                simple.主选择.logo()
        
        if user_Input == "字符输入":
                simple.主选择.字符输入()
                from simple import user_Input_字符输入
                print(user_Input_字符输入)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-6-24 16:01:43 | 显示全部楼层
阴阳神万物主 发表于 2022-6-23 10:06
这个问题是源于变量作用域的问题,“user_Input_字符输入”这个变量是属于“主选择”这个类的,在 simple  ...

ok,多谢 :-)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-17 19:51

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表