Function Calling || Special Variable || Python
In this we are going to see a basic program of function calling using special variables in Python Programming Language.



def func1():
    print('The value of __name__ is ' + __name__)


if __name__ == '__main__':
    func1()

# Coded By DHIRAJ SHELKE


#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post