/ Home

Python Code Template


'''
Created on 

@author: Raja CSP Raman

source:
    https://stackoverflow.com/questions/370357/python-variable-scope-error
'''

def startpy():

    print("Kact101")
    

if __name__ == '__main__':
    startpy()