+ 8
Is their any way to hide some conditions in our code
If(any condition) That applicable in code But not seen in code Is their any way?
1 Odpowiedź
+ 2
You can for example put self-defined functions in a separate file and import that file into your main file.
Then you call your self-defined function:
If condition:
my_secretive_function()
Of course you could simply open that other file to read the code anyway. ;)