def introduction(username, interests, learning, collaboration, contact): print(f"๐ Hi, I'm {username}") print("๐ I'm interested in", interests) print("๐ฑ I'm currently learning", learning) print("๐๏ธ I'm looking to collaborate on", collaboration) print("๐ซ How to reach me", contact)
introduction("@lewiskaraba", "data science and machine learning", "Python programming", "exciting projects", "[email protected]")
--->