I would like ask where the functions like "start" and "help" receive the arguments from? Take a look at this code : https://github.com/python-telegram-bot/python-telegram-bot/blob/master/examples/echobot2.py
In defining, the parameters, there are 2 arguments "bot" and "update", however, when the functions run in the main method, they do not require passing in arguments. Why is this the case?
Thank you!