I want to be able to perform other functions while the others are not resolved or completed, the problem is that I don't know how to do this, my code is below:
async def bar():
name = str(input("Name:"))
print(name)
async def ba():
print("Test")
async def allfunctions():
await bar()
await ba()
asyncio.run(allfunctions())
I wish I could run other functions while others aren't finished, but realize that if you run this code it will wait until you type a username to run the next function, and how can I modify this script to run other functions while the others don't are finished or resolved?