1. Anuncie Aqui ! Entre em contato fdantas@4each.com.br

[Python] in Python why do I get "name 'a' is not defined" even though I have defined it as...

Discussão em 'Python' iniciado por Stack, Setembro 12, 2024.

  1. Stack

    Stack Membro Participativo

    Here is example code:

    async def main():

    a = 10
    async def test():
    global a
    a +=2
    print(a)

    await test()

    asyncio.run(main())


    and the resulting error: a +=2 ^ NameError: name 'a' is not defined

    Continue reading...

Compartilhe esta Página