شركة كلين ماجيك للتنظيف والتعقيم والعزل بالرياض 0544929364 .
19/03/2026
# # # MY SECOND project
import string
small_letters =string.ascii_lowercase # # # # *********
big_letters = string.ascii_uppercase # # # # *********
numbers = string.digits
symbols = string.punctuation
enterd_number= False
enterd_small_letter = False
enterd_big_letter = False
enterd_symbols = False
user_password = input("please enter the password \n") # # # you asked from the user to enter the password
if len(user_password)
19/03/2026
19/03/2026
think in your life as a code everything in your life is step by step
19/03/2026
ايه الغلط هنا
# # # MY SECOND project
import string
letters = string.ascii_letters
numbers = string.digits
symbols = string.punctuation
user_password = input("please enter the password \n")
if len(user_password)
19/03/2026
THIS MY FIRST PROJECT:
def m_function():
the_password = "123"
counter = 0
counter_max = 3
while counter < counter_max:
user_password = input("please enter your password \n")
if user_password == the_password:
print("your access is granted \n")
break
else:
counter+=1
print(f"you have just some tries {counter} / {counter_max} \n")
if counter_max == counter:
print("you are out try again later \n")
m_function()
Be the first to know and let us send you an email when Clean magik posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.