🌍 Location → Pakistan
|
As a hands-on software developer, I specialize in turning ideas into reality and love bringing projects to life.
import random
life_is_hard = True
number_of_tries = 0
while life_is_hard:
print("Life is hard, but I'm not backing down! 💪")
if random.random() < 0.01: # 1% chance of turning things around!
print("Nailed it! Overcame the challenge like a boss! 🎉")
life_is_hard = False
number_of_tries = 0 # Resetting the number of tries on success
else:
number_of_tries += 1
print(f"Stumbled this time, but no worries. I'll rise again! Retry count: {number_of_tries} 🔄")
if number_of_tries == 10:
print("Another failed attempt means another lesson learned. 📚")
number_of_tries = 0 # Resetting the number of tries after an interstellar adventure
print("Life is good, and so am I! 😊")


