import personal_branding as pb
def about_me(name, area_of_residence, interests, occupation, email):
return (f"""Hi, my name is {name}.
I'm a {area_of_residence} based {pb.exaggerate(occupation)}.
I'm interested in f{pb.commodify(interests)}. If you are too, get in touch at: {email}""")
print(about_me(name="Alex Anstruther",
area_of_residence="London",
interests=["My next meal", "AI Safety", "Social advocacy"],
occupation="Unemployed",
email="[email protected]"))
Traceback (most recent call last):
File "/Users/alex_anstruther/Projects/personalWebsite/about_me.py", line 1, in <module>
import personal_branding as pb
ModuleNotFoundError: No module named 'personal_branding'