diff --git a/README.md b/README.md index d02afcdb..d82b5911 100755 --- a/README.md +++ b/README.md @@ -1,3 +1,14 @@ + + + + + + + + + + + # **Hello** > Note: It's better to add your name somewhere in the middle, and not at the beginning nor at the end! @@ -15,6 +26,7 @@ feel free to use these emojis: https://gist.github.com/rxaviers/7360908 :relaxed - [erfan banaei 👨‍💻](https://github.com/erfanbanaei) - [AmirAbas AdibAnsari](https://github.com/Adib4A) :octocat: - [Alireza shokri](https://github.com/alireza-shokri) +- [ShahYan Shahbazi](https://github.com/Sh4hYan) 👑 **What an honor it is to have passed away in pursuit of knowledge** (Thanks a lot Mr.Jadi) - [Reza Shakiba](https://github.com/ARAelcto1384) Its start programming by git. Thanks Mr Jadi. - [Mohammad Bararian](https://github.com/MohammadBararian) - [Rezvane Khamseh :heart: :clock130:](https://github.com/rezvankhamseh) diff --git a/python/thanks_to_jadi.py b/python/thanks_to_jadi.py new file mode 100644 index 00000000..6dcff639 --- /dev/null +++ b/python/thanks_to_jadi.py @@ -0,0 +1,17 @@ +import time + +while True: + number = input("Insert any number that shows your love: ") + if not number.isdigit(): + print("❌ Please insert a NUMBER!") + continue + + number = int(number) + if number > 1000: + print("❌ You cannot insert a number greater than 1000!") + continue + break + +for i in range(1, number + 1): + time.sleep(1) + print(f"❤️ I love Jadi {i} time")