def create_readme(name, email, linkedin): """ Generate a GitHub README content.
:param name: Muhammet P.
:param email: [email protected]
:param linkedin: https://www.linkedin.com/in/muhammetpolat
:return: README content as a string
"""
content = f"""
Welcome! You've stepped into my virtual workspace where you can discover my passion for technology.
I am a developer specialized in Python, PHP, and JavaScript. I love exploring technology and pushing the boundaries of software.
- Blockchain: Shaping the future of blockchain technology and exploring new frontiers in this revolutionary field.
- Artificial Intelligence: Creating intelligent solutions using the power of AI.
- Cybersecurity: Continuously researching new methods to ensure the safety of the digital world.
Feel free to reach out to me! I always enjoy discussing new ideas and projects.
- 📧 Email: [email protected]
- 🔗 LinkedIn: https://www.linkedin.com/in/muhammetpolat """ return content
my_readme = create_readme("Muhammet P.", "[email protected]", "https://www.linkedin.com/in/muhammetpolat")
print(my_readme)