python-camp-24/main.py
2024-05-28 21:15:58 +01:00

12 lines
251 B
Python

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")