diff --git a/main.py b/main.py new file mode 100644 index 0000000..5be4c1f --- /dev/null +++ b/main.py @@ -0,0 +1,12 @@ +import importlib + +taskname = input("Type the Activity Number\n:") + +print("Running Activity " + taskname.strip()) + +try: + importlib.import_module('activity' + taskname.strip()) +except Exception as e: + print("Error: ", e) + +print("Execution Ends Here")