about = {
"First Name": "Pedro Paulo",
"Last Name": "Fagundes Cabral",
"Age": 22,
"Country": "Brazil",
"Role": "Data & Business Analytics Enthusiast"
}
contact = {
"Email": "preedroos@gmail.com",
"Instagram": "@preedroos",
"LinkedIn": "pedropfcabral"
}
greet = f"Hi there, I'm {about["First Name"]}, feel at ease π"
def display_info():
print(greet)
print("\nπΉ About Me:")
for key, value in about.items():
print(f" {key}: {value}")
print("\nπΉ Contact:")
for key, value in contact.items():
print(f" {key}: {value}")
if __name__ == "__main__":
display_info()
HTML5 |
CSS3 |
JavaScript |
Python |
Java |
Git |