importing class and its function from another file [Python]
- by user343934
Hi everyone,
I am having little bit problem in importing classes in python. My work flow goes like this
-index.py
---class template:
------def header():
------def body():
------def footer():
-display.py
I want to call function header(), body() and footer () in my display.py page. Will anyone make me clear about this issue in python. Thanks for your concern.