السلام عليكم بالنسبة للكود في التمرين كتبته في هذه الطريقة هل يوجد مشكله فيه ام هو فنفس الجودة ؟ password = ("12345678") for attempts in range(1, 4): number= input(" password:") if number == password : print("correct") break else : print("inccorrect try again") continue else: print("no more attemps")
CorrectPass = "ahmed" for i in range(3): password = input("enter your password: ") if password == CorrectPass: print("Correct password.") break else: if i == 2: print("no more attempts")
i = 3 users_password = "hello" for a in range(i) : input_password = input("Enter the password: ") if users_password != input_password : continue print ("Correct password") break print("No more attempts")
انا حليت عن طريق استخدام for loop وطبقت كل الي في الدرس حيث اني استخدمت break و continue passwords = ["ahmed987"] attempts = 3 for password in range(3) : attempts -= 1 password = input("Enter the password") if password in passwords : print("correct password") break else : print("this password is wrong try agin ") if attempts > 0 : print(f"you have {attempts} attempts lift") else : print("no more attempts") continue
correct_password = "123456789" for i in range(3): password = input("Enter the password: ") if password == correct_password: print("Correct password") break if i == 2: print("No more attempts")
انت مستوى بحد ذاتك. بارك الله فيك
تحياتي لافضل قناة اخوك تامر
و الله اني استفد منك كتييييييييييييييييرا
اشتقنا لحلقاتك الشيقية يا سيدي لا تتأخر علينا مثل هذا التأخير شكرا لك على مجهودك الرائع
مرحبا بك و سأحاول التسريع في نسق تنزيل الحلقات قدر الإمكان مع المحافظة على جودة المحتوى
اتمنى الا تنقطع
مذهل ...انته ما تفوت اي شي ...
اخي انته متخصص في الذكاء الاصطناعي ؟
شكرا حقيقة الذكاء الاصطناعي ليس مجالي لاكن لدية دراية بسيطة على اهم مكتبات بايثون في هذا المجال
لابد أن الناس لم يصلها محتواك لأن من و صله محتواك لابد أن يدمن عليه.
نحاول ان نوصل المعلومة بافضل طريقة ممكنة و ان شاء الله سينتشر هذا المحتوى و يجد حضه بوجود متابعين متميزين مثلك
شكرا لكم وبارك الله فيكم
العفو و ربي يحفضك
ممتاز
شكرا
شكرا لحضرتك
من فضلك استكمال بايثون
العفو و مرحبا بك
المستوى الأول ينتهي قريبا ان شاء الله
password = 'admin123'
attempts = 3
while attempts > 0:
password0 = input('Enter password : ')
attempts -= 1
if password0 == password:
print('
Correct password !')
break
else:
match attempts:
case 2:
print(f'{attempts} attempts left !
')
case 1:
print(f'{attempts} attempt left !
')
case 0:
print('No more attempts !')
أضفت match statement لعرض أفضل
thanks
Welcome bro
وااااااااصل
السلام عليكم بالنسبة للكود في التمرين كتبته في هذه الطريقة هل يوجد مشكله فيه ام هو فنفس الجودة ؟
password = ("12345678")
for attempts in range(1, 4):
number= input(" password:")
if number == password :
print("correct")
break
else :
print("inccorrect try again")
continue
else:
print("no more attemps")
أحسنت حل ممتاز. طبعا هنالك العديد من الحلول لأي مشكلة برمجة و محاولة إيجاد الحلول بمفردك سيطور مستواك بسرعة اشجعك واصل!
@@two_pi ضكرا جزيلا و اشكرك على شروحاتك جدا ❤️
CorrectPass = "ahmed"
for i in range(3):
password = input("enter your password: ")
if password == CorrectPass:
print("Correct password.")
break
else:
if i == 2:
print("no more attempts")
Great work 👏👏
i = 3
users_password = "hello"
for a in range(i) :
input_password = input("Enter the password: ")
if users_password != input_password :
continue
print ("Correct password")
break
print("No more attempts")
فين حلقة الجمعة؟
تم تأجيل الحلقة للأسبوع القادم بسبب التزامات أخرى
شكرا اخي على المتابعة الوفية
انا حليت عن طريق استخدام for loop وطبقت كل الي في الدرس حيث اني استخدمت break و continue
passwords = ["ahmed987"]
attempts = 3
for password in range(3) :
attempts -= 1
password = input("Enter the password")
if password in passwords :
print("correct password")
break
else :
print("this password is wrong try agin ")
if attempts > 0 :
print(f"you have {attempts} attempts lift")
else :
print("no more attempts")
continue
correct_password = "123456789"
for i in range(3):
password = input("Enter the password: ")
if password == correct_password:
print("Correct password")
break
if i == 2:
print("No more attempts")
Great work 👏