Back
I am writing a program in python which contains many constant variables. I would like to create a file which will hold all these variables like .h file in C that contains many #define. I tried to use config parser however I didn't find it easy and fun to use.
Do you know a better way?
You can do something which is using a method:
def MY_CONSTANT(): return "Whatever"
def MY_CONSTANT():
return "Whatever"
Now, in theory, calling MY_CONSTANT() acts just like a constant.
To know more about this you can have a look at the following video tutorial:-
31k questions
32.8k answers
501 comments
693 users