python-camp-24/main.py

13 lines
251 B
Python
Raw Normal View History

2024-05-28 16:15:58 -04:00
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")