forked from Prajwal-Prathiksh/Museum-Path-Optimization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
21 lines (16 loc) · 712 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
###########################################################################
# Imports
###########################################################################
# Standard library imports
import os
# Local imports
from code.__init__ import print_hello_world
###########################################################################
# Code
###########################################################################
ext = f"I'm located at - {os.path.dirname(os.path.realpath(__file__))}"
###########################################################################
# Main Code
###########################################################################
if __name__ == '__main__':
print_hello_world(ext)