I am C++ programmer and new to python.I found many good things in Python but one thing that was strange to me that there is no way to make variable constant in Python Here is my code:
def main():
a = 10
if __name__ == "__main__":
main()
how can I make a constant. Thanks for your help.