# contact.py
contact_info = {
"email": "noah@example.com",
"linkedIn": "https://linkedin.com/in/NoahProfile",
"github": "https://github.com/NoahProfile"
}
def show_contact():
print("Contact Info:")
for key, val in contact_info.items():
print(f"{key.capitalize()}: {val}")
if __name__ == "__main__":
show_contact()