NameError:未定义全局名称

时间:2014-03-11 18:01:16

标签: python nameerror

我的python代码不断获取nameerror,未在ticketSold上定义全局变量。我不确定如何解决这个问题,因为我确实将其定义为全局变量。任何帮助表示赞赏。

aLimit=300
bLimit=500
cLimit=100
aPrice=20
bPrice=15
cPrice=10

def Main():
global ticketSold

getTickets(aLimit)
sectionIncome=calcIncome(ticketSold,aPrice)
SectionIncome+=totalIncome
print("The theater generated this much money from section A "+str(sectionIncome))

getTickets(bLimit)
sectionIncome=calcIncome(ticketSold,bPrice)
SectionIncome+=totalIncome
print("The theater generated this much money from section B "+str(sectionIncome))

getTickets(cLimit)
sectionIncome=calcIncome(ticketSold,cPrice)
sectionIncome+=totalIncome
print("The theater generated this much money from section C "+str(sectionIncome))
print("The Theater generated "+str(totalIncome)+" total in ticket sales.")

    def getTickets(limit):
ticketSold=int(input("How many tickets were sold? "))
if (ticketsValid(ticketSold,limit)==True):
    return ticketSold
else:
    getTickets(limit)

   def ticketsValid(ticketSold,limit):

while (ticketSold>limit or ticketSold<0):
    print ("ERROR: There must be tickets less than "+str(limit)+" and more than 0")
    return False
return True

def calcIncome(ticketSold,price):     返回票价*价格

2 个答案:

答案 0 :(得分:4)

global varname不会为你神奇地创建varname。您必须在全局命名空间中声明ticketSold,例如在cPrice=10之后。 global只确保当您说ticketSold时,您使用名为ticketSold的全局变量而不是同名的本地变量。

答案 1 :(得分:1)

这是一个版本:

  • 兼容Python 2/3
  • 不使用任何全局变量
  • 很容易扩展到任意数量的部分
  • 演示了OOP的一些好处(与命名变量的增加相反:aLimitbLimit等 - 当你达到27个部分时,做什么?

所以:

import sys

if sys.hexversion < 0x3000000:
    # Python 2.x
    inp = raw_input
else:
    # Python 3.x
    inp = input

def get_int(prompt):
    while True:
        try:
            return int(inp(prompt))
        except ValueError:  # could not convert to int
            pass

class Section:
    def __init__(self, name, seats, price, sold):
        self.name  = name
        self.seats = seats
        self.price = price
        self.sold  = sold

    def empty_seats(self):
        return self.seats - self.sold

    def gross_income(self):
        return self.sold * self.price

    def sell(self, seats):
        if 0 <= seats <= self.empty_seats():
            self.sold += seats
        else:
            raise ValueError("Cannot sell {} seats, only {} are available".format(seats, self.empty_seats))

def main():
    # create the available sections
    sections = [
        Section("Loge",  300, 20., 0),
        Section("Floor", 500, 15., 0),
        Section("Wings", 100, 10., 0)
    ]

    # get section seat sales
    for section in sections:
        prompt = "\nHow many seats were sold in the {} Section? ".format(section.name)
        while True:
            # prompt repeatedly until a valid number of seats is sold
            try:
                section.sell(get_int(prompt))
                break
            except ValueError as v:
                print(v)
        # report section earnings
        print("The theatre earned ${:0.2f} from the {} Section".format(section.gross_income(), section.name))

    # report total earnings
    total_earnings = sum(section.gross_income() for section in sections)
    print("\nTotal income was ${:0.2f} on ticket sales.".format(total_earnings))

if __name__=="__main__":
    main()

给了我们

How many seats were sold in the Loge Section? 300
The theatre earned $6000.00 from the Loge Section

How many seats were sold in the Floor Section? 300
The theatre earned $4500.00 from the Floor Section

How many seats were sold in the Wings Section? 100
The theatre earned $1000.00 from the Wings Section

Total income was $11500.00 on ticket sales.