我有一個程序,如: class ABC:
q = {}
def update:
self.state = (xx,xx)
global q
if self.state in q:
// do something
我收到錯誤: "NameError: global name 'q' is not defined" 進出口新
我想了一個簡單的程序,並不斷收到此特定錯誤: line 34, in <module>
user_choice1 == input("Do you want to exit or continue searching?")
NameError: name 'user_choice1' is not defined
下面是一段代碼導致錯誤: while True:
choice = inp
總計我在其中搜索過的新手問題。我在第2章中介紹了一個非常簡單的程序,我不斷收到NameError。 第一行是 if name == 'Alice': 並且它導致 NameError: name 'name' is not defined
任何對此的思考。在索引或任何網站中找不到此NameError。 感謝
紅寶石V2.2.3應該有Date類預裝到IRB,但是當我進入... Date NameError: uninitialized constant Date from (irb):1 from /Users/noah/.rubies/ruby-2.2.3/bin/irb:11:in `' 爲什麼我應該有require Date每一次,如果它是應該預裝到2.2.3中?
這裏是我的代碼 import math
try:
valor = float(input("Give a real number "))
print("Your value given is: ", value)
except ValueError:
print("You gave a value not interpretable as a real on