Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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!
Expand All @@ -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)
Expand Down
17 changes: 17 additions & 0 deletions python/thanks_to_jadi.py
Original file line number Diff line number Diff line change
@@ -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")