- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我已经研究了很长一段时间了,但我不知道哪里出了问题。我对 Python 很陌生,所以这可能是一个简单的修复。
def main():
age = 0;
weight = 0;
birthMonth = " ";
getAge();
getWeight();
getBirth();
correct();
def getAge():
age = input("Guess the age.\t")
return age;
def getWeight():
weight = input("Guess the weight.\t")
return weight;
def getBirth():
birthMonth = input("Guess the month.\t")
return birthMonth;
def correct():
if (age <= 25):
print ("Congratulations, the age is 25 or less")
else:
print ("You did not correctly guess the age");
if (weight <= 128):
print ("Congratulations, the weight is 128 or more")
else:
print ("You did not correctly guess the weight");
if (birthMonth == 25):
print ("Congratulations, the month is April")
else:
print ("You did not correctly guess the month");
main();
在空闲状态下运行它后出现的错误是,回答三个提示如下:
Traceback (most recent call last):
line 39, in <module>
main();
line 9, in main
correct();
line 24, in correct
if (age <= 25):
NameError: name 'age' is not defined
请帮忙,或者将我发送到有帮助的帖子。我花了大约一个小时试图找到这样的东西。
最佳答案
你尝试过这个吗?
def main():
age = getAge()
weight = getWeight()
birthMonth = getBirth()
correct(age,weight,birthMonth)
def getAge():
age = float(input("Guess the age.\t"))
return age
def getWeight():
weight = float(input("Guess the weight.\t"))
return weight
def getBirth():
birthMonth = input("Guess the month.\t")
return birthMonth
def correct(age,weight,birthMonth):
if age <= 25:
print ("Congratulations, the age is 25 or less")
else:
print ("You did not correctly guess the age")
if weight <= 128:
print ("Congratulations, the weight is 128 or more")
else:
print ("You did not correctly guess the weight")
if birthMonth == "April":
print ("Congratulations, the month is April")
else:
print ("You did not correctly guess the month")
main()
关于python - NameError:名称 'age' 未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35251749/
虽然我试图完全理解 NoMethodError 和 NameError 之间的区别,但我发现 NameError 在祖先中不在 0 位置。是 DidYouMean 的魔法吗? [1] pry(main
请谁来帮我解决这个问题。**当在服务器上运行时,特定的结果会出现,但服务器运行得很好。当我运行代码时,它发送这个错误
下面的 Python 由于某种原因失败了。 class NetVend: def blankCallback(data): pass def sendCommand(c
作为this great answer建议,从 Python 3.7 开始,如果 from __future__ import annotations 使用指令。 但是,如果我想为注释类型创建别名,这
我在导入自制模块时遇到了一些麻烦,我只是看不出我做错了什么。 我有一个名为 basics 的包,其中包含我所有的基类 我有一个名为 components 的第二个包,components 中的每个模块
我的 python 代码不断出现名称错误,未在 ticketSold 上定义全局变量。我不确定如何解决这个问题,因为我确实将其定义为全局变量。感谢您的帮助。 aLimit=300 bLimit=500
我正在安装 Redmine,但由于抽成问题,我快疯了。特别是,为了对不同的 Ruby 插件执行捆绑安装,我被要求安装 xapian-full-alaveteli,v 1.2.9.5。问题是我收到以下错
我的 python 代码不断出现名称错误,未在 ticketSold 上定义全局变量。我不确定如何解决这个问题,因为我确实将其定义为全局变量。感谢您的帮助。 aLimit=300 bLimit=500
我正在安装 Redmine,但由于抽成问题,我快疯了。特别是,为了对不同的 Ruby 插件执行捆绑安装,我被要求安装 xapian-full-alaveteli,v 1.2.9.5。问题是我收到以下错
所以我是第一年,有一点编码经验,但不多,我被赋予了制作基于文本的冒险游戏的任务。我的讲师给了我们一个模板并帮助我们开始,但我很困惑为什么这段代码会导致 shell 显示 NameError: name
我有一些编程经验,但我对 python 很陌生,我正在尝试弄清楚如何使用和导入 .py 文件中的类而不是 main 。我目前正在使用 netbeans,运行 CPython 3.2.1。 根据我现在的
代码非常简单,我刚刚开始用 python 编程 代码 man = input ("what's your name mister") print("his name is "+man) 运行程序后收到
我在文件中创建一个类。声明一些类变量 A = 5 和另一个类变量 B = A+1。从另一个文件导入该类时,出现 NameError: name 'A' is not Defined。有没有办法解决这个
我一直在为 Minecraft 的 Raspberry Pi 版本制作 mod,每次在程序中输入其中一个命令时,我都会遇到非常令人沮丧的错误。这是我的代码: import minecraft.mine
为什么会这样: def fn(proc, *args, **kwargs): cache = proc.cache = {} def cached_execution(cache, *
我是 Python 的新手,正在学习类,正在尝试编写一个“个人信息”程序: 这是我的代码: class PersonalInfo(): def names(self, name):
我今天用这个简单的代码遇到了一个非常奇怪的问题: var1 = 1 var2 = 2 if var1 > var2 > var3: print('Does not run') print('D
我正在 try catch 无法加载模块时发生的任何异常。当前的结果是“except” block 没有被执行。 import sys def loadModule(module): try:
这是我的代码: import os if os.path.exists(r'C:\Genisis_AI'): print("Main File path exists! Continuing
我正在学习列表理解,通过切换变量我得到了 2 个不同的结果,尽管它们看起来应该工作相同。 数组 a 等于 [[0, 0, 0, 0, 0], [1, 0, 0, 0, 0], [0, 0, 0, 0
我是一名优秀的程序员,十分优秀!