From febdbd3e20e28374fb2094cded37c847f13ea27e Mon Sep 17 00:00:00 2001 From: Shayan Date: Thu, 25 Sep 2025 16:39:41 +0330 Subject: [PATCH 1/3] Update README.md --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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) From 190f7979e764056649cdac24565494687e4346ea Mon Sep 17 00:00:00 2001 From: Shayan Date: Thu, 25 Sep 2025 17:24:19 +0330 Subject: [PATCH 2/3] A game for thanking Jadi --- python/thanks_to_jadi.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 python/thanks_to_jadi.py diff --git a/python/thanks_to_jadi.py b/python/thanks_to_jadi.py new file mode 100644 index 00000000..32193f08 --- /dev/null +++ b/python/thanks_to_jadi.py @@ -0,0 +1,20 @@ +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") \ No newline at end of file From 5643be0974c3a7a1c232f6418cce649892280753 Mon Sep 17 00:00:00 2001 From: Shayan Date: Wed, 8 Oct 2025 23:06:03 +0330 Subject: [PATCH 3/3] =?UTF-8?q?=D9=8BRemove=20extra=20lines?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- python/thanks_to_jadi.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/python/thanks_to_jadi.py b/python/thanks_to_jadi.py index 32193f08..6dcff639 100644 --- a/python/thanks_to_jadi.py +++ b/python/thanks_to_jadi.py @@ -2,19 +2,16 @@ 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") \ No newline at end of file + print(f"❤️ I love Jadi {i} time")