-
π± Iβm currently learning advanced Python, Arduino and ESP
-
βοΈ I love working on practical tech projects (bots, games, smart devices)
-
π― My goal: Get into a top university with a full scholarship
class WhoAmI:
def __init__(self):
self.name = "Kerim Nuryyev"
self.city = "Dashoguz, Turkmenistan"
self.role = "Future Engineer | Robotics Enthusiast"
self.languages = ["Turkmen (tm_TM)", "English (en_US)", "Russian (ru_RU)"]
self.dream = "Study at a Top University and build meaningful tech"
self.hobbies = [
"π» Coding cool stuff",
"π€ Building Arduino & robotics projects",
"π Reading Sci-Fi & Tech books",
"π Debugging until 3AMβ¦ and finally winning"
]
self.say_hi()
def say_hi(self):
print("π Hi there! Thanks for stopping by. Check out my projects, maybe you'll like them!")
me = WhoAmI()|
|


