أحبائنا في أكتو كود, تجدون مجموعة أكبر بكثير من الفيديوهات على التطبيق مقارنة بما هو متوفر على يوتيوب. نشجعكم على تحميل التطبيق المجاني للإستفادة الكاملة ولا تنتظروا حتى نقوم برفع المزيد على يوتيوب. يمكنك تخطي اي عدد دروس تحب من خلال التطبيق أيضا حمل اكتو كود على ايفون من هنا: apps.apple.com/us/app/octucode/id6449018676 وعلى أندرويد من هنا: play.google.com/store/apps/details?id=com.base.octucode
المشروع واضافات بسيطه import random print("Welcome to the rabbit transport game ") trees=[ [ "🌿", "🌿", "🌿"], [ "🌿", "🌿", "🌿"], ["🌿", "🌿", "🌿"] ] for s in trees: print(s) E="🐇" name_1="🎁" print("Pick the rabbit for one of the rows and columns", E) Ar=input("Enter the row and column number:") R=int(Ar[0])-1 D=int(Ar[1])-1 trees[R][D] =E name=random.randint(0, len(trees[R])-1) trees[R][name]=name_1 if name == D: print("You lost") for S in trees: print(S) else: print("You won") for B in trees: print(B)
السلام عليكم لو سمحت يا استاذ ابراهيم ممكن في الحلقات الجاية تشرحلنا على برنامج visual studio code وكتر ألف خيرك اعملو لايك لتعليقي عشان الاستاذ ابراهيم يشوفو
أفضل و أروع استاذ في العالم 🥺🤍🤍🤍 من كثرة حبي لشخصيتك العظيمة و قنواتك المثالية ، أخبرت جميع من أعرفهم عنك ، والدي ، أخواتي ، أقاربي ... 💗💗💗💗 أسأل الله أن يوفقك و يزيدك من فضله 🤲♥️♥️♥️ أرجو أن تخبرنا كم حلقة تبقت لإنهاء سلسلة باثيون ، و هل سننهيها هذه السنة أم لا ؟
ممكن الجزء numberonly=["11","12","13","21","22","23","31","32","33"] if (choosen) in numberonly : يختصر لكده if len(numberonly)== 2 and int(user_choice)>=11:
هيهي سعيدة جداا💖💖.. رغم اني عرفت الحل من البداية لكن كلساع يطلعلي ايرور، وطلعت المشكلة بسيطة جدا وهي اني ما حولت الاختيار إلى رقم فبقى نص وهو سبيلي الايرور😄
2:08 instead of removing the "water" and then appending the tea, Why wouldn't we edit the "water" to "tea". I think the code would be concise and readable rather than being a bit verbose
السلام عليكم .. شكرا لحضرتك على الجهد الذي تقدمه وجعله الله بميزان حسناتك إن شاء الله ... هل في مجال إنك تعمل كورسات في القاهرة للي حابب يتعلم البرمجة من الصفر ؟؟ ياريت ترد ع سؤالي
استاذ ابراهيم ازاى بعدل على القائمة سواء الفواكهه او المشروبات او غيره وانا من المفترض انى معرفش الايجابة او التعديل اللى المستخدم هيعمله ؟ ممكن توضحلى الايجابة
fruit=[['apple','banana'],['milk','water']] print(fruit) input('press enter to change the content') print('here is the updated basket') updated=[['orange','apple','banana'],['coffe','milk','tea'],['1','2','3]']] print(updated)
السلام عليكم..أولا>>شكرا كتير لمجهوداتك استاذ ابراهيمز ثانيا>> ما الفرق بين .apped و extend وهل كان ينفع اقول basket.extend([1, 2, 3]) بدل basket.append([1, 2, 3])
ينفع تستخدم extend بس بشرط لازم تعمل متغير جديد وتحط الارقام فيه وبعدين تعمل اضافة القائمة الجديدة القائمة الاساسية بس مافي داعي تعمل كل هاد طالما append بتعمل اضافة فورا للقائمة 👍👍
print("Welcome to place of rabbit") list1=[["🌿","🌿","🌿"],["🌿","🌿","🌿"],["🌿","🌿","🌿"]] print(f"{list1[0]} {list1[1]} {list1[2]} ") print("Where should rabbit go ?🐇 ") where=input("Please choose a row and a colomn:") fisrt=int(where[0]) secend=int(where[1]) list1[fisrt-1].remove(list1[fisrt-1][secend-1]) list1[fisrt-1].insert(secend-1,"🐇") print(f"{list1[0]} {list1[1]} {list1[2]} ")
books=['book2',"book3",],["apples","bananas",] print(books) input("press enter to change the content") a=["book4",'book5'] books[0].extend(a) b=["oranges","lemons"] books[1].extend(b) books[0].insert(0,"book1") books[1].remove("apples") print("here is the updated basket") print(books)
print("Welcome to the place the rabbit") A=["🍃","🍃","🍃"] B=["🍃","🍃","🍃"] C=["🍃","🍃","🍃"] print(A) print(B) print(C) print("Where should the rabbit go? 🐇") N= input("please choose a row and a column ") if N=="11" or N=="12" or N=="13" : A.pop(int(N[1])-1) A.insert(int(N[1])-1, "🐇") print(A) print(B) print(C) elif N=="21" or N=="22" or N=="23" : B.pop(int(N[1])-1) B.insert(int(N[1])-1, "🐇") print(A) print(B) print(C) elif N=="31" or N=="32" or N=="33" : C.pop(int(N[1])-1) C.insert(int(N[1])-1, "🐇") print(A) print(B) print(C) else: print("Please choose a row and column between 1 and 3 ")
You are a brave warrior on a quest. You have an inventory of items you use for your adventures. Initial Setup: You start with an inventory list containing: ["Sword", "Shield", "Helmet"]. Switching Items: switch an item in your inventory. You can replace the "Helmet" with "Dragon helmet". Merchant list: You visit a merchant who offers new items. The merchant's items are listed as: ["Potion", "Boots", "Gloves", "Ring", "Necklace"]. Selling Items: You decide to sell one item from your inventory. Make sure to remove it from the list. in order to buy 1 item from the merchant. Buying New Items: You can choose to buy any of these items and add them to your inventory. Updating Inventory: After buying items, update your inventory to reflect the new additions. Displaying Inventory: Print out your final inventory list after all updates and changes.
ازاي يجماعة المستر طبع الباسكيت بعد التحديث على الكونسل من غير ما يعملها طباعة في الكود😐😐😐 امر الطباعة الاخير مفيهوش ال f-string ولا المتغير بتاع الباسكيت بعد التحديث🤔🤔
print("welcome to place the rabbit") lis=[['🌻', '🌻', '🌻'], ['🌻', '🌻', '🌻'], ['🌻', '🌻', '🌻']] print(f"{lis[0]} {lis[1]} {lis[2]}") print("where should the rabbit go? ") num=input("please enter a row and a column: ") num.split() row=int(num[0])-1 column=int(num[1])-1 lis[row][column]='🐰' print(f"{lis[0]} {lis[1]} {lis[2]}")
print('welcome to place the rabbit') mine=[['🌳','🌳','🌳'],['🌳','🌳','🌳'],['🌳','🌳','🌳']] print(mine[0]) print(mine[1]) print(mine[2]) answer=input('where should the rabbit go ? 🐇,please choose a coulmn ') answer_sec=input("please choose a row ") C=int(answer)-1 R=int(answer_sec)-1 mine[C][R]="🐇" print(mine[0]) print(mine[1]) print(mine[2])
عندما أرى الكثير يجد الحل أتفاجأ وأحبط . هل هم من من درسو برمجة من قبل أم هذه اول دراسة لهم. أنا أول دروس لي هنا على هذه القناة. ماذا افعل لارفع مستواي
print("Welcome to place the rabbit: ") list_a=["🌿","🌿","🌿"] list_b=["🌿","🌿","🌿"] list_c=["🌿","🌿","🌿"] print(list_a) print(list_b) print(list_c) print("Where should the rabbit go ? 🐇 : ") choice=int(input("Please choose a row and a colum :")) a=choice//10 b=choice%10 if a
print("Welcome to the rabbit transport game ") trees=[ [ "🌿", "🌿", "🌿"], [ "🌿", "🌿", "🌿"], ["🌿", "🌿", "🌿"] ] for s in trees: print(s) E="🐇" print("Pick the rabbit for one of the rows and columns", E) Ar=input("Enter the row and column number:") R=int(Ar[0])-1 D=int(Ar[1])-1 trees[R][D]=E for S in trees: print(S)
import random print("Welcome to the rabbit transport game ") trees=[ [ "🌿", "🌿", "🌿"], [ "🌿", "🌿", "🌿"], ["🌿", "🌿", "🌿"] ] for s in trees: print(s) E="🐇" name_1="🎁" print("Pick the rabbit for one of the rows and columns", E) Ar=input("Enter the row and column number:") R=int(Ar[0])-1 D=int(Ar[1])-1 trees[R][D] =E name=random.randint(0, len(trees[R])-1) trees[R][name]=name_1 if name == D: print("You lost") for S in trees: print(S) else: print("You won") for B in trees: print(B)
أحبائنا في أكتو كود, تجدون مجموعة أكبر بكثير من الفيديوهات على التطبيق مقارنة بما هو متوفر على يوتيوب. نشجعكم على تحميل التطبيق المجاني للإستفادة الكاملة ولا تنتظروا حتى نقوم برفع المزيد على يوتيوب. يمكنك تخطي اي عدد دروس تحب من خلال التطبيق أيضا
حمل اكتو كود على ايفون من هنا:
apps.apple.com/us/app/octucode/id6449018676
وعلى أندرويد من هنا:
play.google.com/store/apps/details?id=com.base.octucode
اقصد : اتمنى لو تكون هناك حلقات مراجعة شاملة كما اتمنى تسليط الضوء على الخطوات القادمة وشكراااا حطوا لايك حتى يشوف التعليق
المشروع واضافات بسيطه
import random
print("Welcome to the rabbit transport game
")
trees=[
[ "🌿", "🌿", "🌿"],
[ "🌿", "🌿", "🌿"],
["🌿", "🌿", "🌿"]
]
for s in trees:
print(s)
E="🐇"
name_1="🎁"
print("Pick the rabbit for one of the rows and columns", E)
Ar=input("Enter the row and column number:")
R=int(Ar[0])-1
D=int(Ar[1])-1
trees[R][D] =E
name=random.randint(0, len(trees[R])-1)
trees[R][name]=name_1
if name == D:
print("You lost")
for S in trees:
print(S)
else:
print("You won")
for B in trees:
print(B)
السلام عليكم
لو سمحت يا استاذ ابراهيم ممكن في الحلقات الجاية تشرحلنا على برنامج visual studio code وكتر ألف خيرك
اعملو لايك لتعليقي عشان الاستاذ ابراهيم يشوفو
ياريت
اتمنى لو تكون هناك حلقة مراجعة شاملة لجميع المفاهيم و بخصوص كورس الhtml هل ستكون الحلقات غير مرتبة اتمنى تسليط الضوء على الخطوات القادمة وشكرااااا
أفضل و أروع استاذ في العالم 🥺🤍🤍🤍 من كثرة حبي لشخصيتك العظيمة و قنواتك المثالية ، أخبرت جميع من أعرفهم عنك ، والدي ، أخواتي ، أقاربي ... 💗💗💗💗 أسأل الله أن يوفقك و يزيدك من فضله 🤲♥️♥️♥️
أرجو أن تخبرنا كم حلقة تبقت لإنهاء سلسلة باثيون ، و هل سننهيها هذه السنة أم لا ؟
استاذ هلا كل الناس خير و بركة بس نحنا متعودين عليك انت ف يا ريت لو انك انت تشرح كل المسارات
ياريت والله
فعلا انا شوفت حلقة المسار الجديد ومحبط جدا بسبب الشرح
للأسف معك حق
انا عدت الحلقة اكتر من مرة حتى فهمت شوية و صرت جرب بأيدي اكتر من شغلة حتى افهم @@mahmoudmahmoud-tu8rc
هوه مو متخصص بكل المسارات حتى يشرحلك كل المسارات
ارحميه شوي
❤❤أفضل أستاذ في العالم ❤❤❤
شكرا لك استاذنا الغالي بكل لغات ومفرات العالم، نحن نسعى جاهدين لأن نبني المستقبل معاً🌹🌹
استاذ ابراهيم ممكن توضحلنة كيف نكدر نوازن بين بايثون وكورس تطبيقات الويب الي نازل جديد وهل ينفع تعلمهم معا ولا لا
لا يفضل ان تركز على لغه واحد
ليش ما ينفع ما فهمت ؟@@bndr892
الحمد لله قدرت احل المشروع بطريقتين مختلفتين .. شكرا جدا لحضرتك على هذا المجهود الرائع وتوصيل المعلومه بطريقه روعه مستر ابراهيم عادل❤🩹❤🩹
الحمدلله بعد محاولات كثيرة قدرت اوصل للحل شكرا أستاذ ابراهيم ❤❤
ممكن تشاركنا الحل لو سمحت ؟ نستفاد من بعض يعنى
القوائم في عدة متغيرات .. او متغير واحد
@@essam_dahan القائمة الاساسية متغير واحد ثم قسمها الى ثلات متغيرات حسب الاندكس بتاعها
@@ahmedsalm5713
> 18 line
Puz = [["☘", "☘", "☘"], ["☘", "☘", "☘"], ["☘", "☘", "☘"]]
print("Welcome to place the rabbit
")
print(Puz[0])
print(Puz[1])
print(Puz[2])
print("Where should the rabbit go? 🐇")
User_Choice = input("Please choose a row and a column: ")
Row = int(User_Choice[0]) - 1
Column = int(User_Choice[1]) - 1
Acceptable = ["11","12","13","21","22","23","31","32","33"]
if User_Choice in Acceptable:
print("Success ....
")
Puz[Row][Column] = "🐇"
else:
print("Please pick a valid row and column numbers")
print(Puz[0])
print(Puz[1])
print(Puz[2])
@@essam_dahanعده متغيرات
عاشت الايادي استاذنا الفاضل ، بارك الله في جهودكم.
شكرا لحضرتك جدا انا استفدت من حضرتك كتير سواء فى الانجليزي أو البرمجه ❤
ممكن يا استاذ ابراهيم تعمل ملخص pdf نراجع منو كل حاجه
ممكن احد يفيدني .. في برنامج الربليت صار يسوي اكمال للكود .. كيف الغي دا الشي
نفس الكلام
انا اللي كتبت الاستفسار وحصلت الحل وكتبته هنا . شوفو الطريقه
@ritellouai6391 مكتوب حل المشكله هنا شوفيها في نفس الرد على السؤال
لقيتو الحل ؟
@@safaala3067 كتبت الحل هنا في الردود شوفيه
ربنا يجزيك عنا كل خير ويجعل مثواك وإيانا الفردوس ❤❤
راسى كانت فى السؤال ونسيت اشكر حضرتك على مجهوداتك ربنا يزيدك من فضله وعلمه
جزاك الله خير الجزاء ورحم والديك وحفظك من كل سوء ❤❤❤
الحمد لله حليت من اول محاولة 😊
تمت المهمه بنجاح
جزاك الله كل خير ❤
ممكن تشاركنا الحل بتاعك
@@ahmedsalm5713 num=["🌲","🌲","🌲"]
nnm=["🌲","🌲","🌲"]
mmm=["🌲","🌲","🌲"]
print ("welcome to place therabbit
")
print(num)
print(nnm)
print(mmm)
print ("where should the rabbit go? 🐇")
name =int(input (" please choice a row and a cloumn "))
if name==11:
num.remove("🌲")
num.insert(0, "🐇")
print (num)
print (nnm)
print (mmm)
elif name==12:
num. remove (" 🌲")
num. insert(1,"🐇")
print (num)
print (nnm)
print (mmm)
elif name==13:
num. remove ("🌲")
num. insert(2,"🐇")
print (num)
print (nnm)
print (mmm)
elif name==21:
nnm.remove("🌲")
nnm. insert(0,"🐇")
print (num)
print (nnm)
print (mmm)
elif name==22:
nnm. remove ("🌲")
nnm. insert(1,"🐇")
print(num)
print(nnm)
print(mmm)
elif name==23:
nnm. remove ("🌲")
nnm. insert(2,"🐇")
print ("success......
")
print(num)
print(nnm)
print(mmm)
elif name==31:
mmm. remove("🌲")
mmm. insert(0,"🐇")
print(num)
print(nnm)
print(mmm)
elif name==32:
mmm. remove("🌲")
mmm. insert (1,"🐇")
print(num)
print(nnm)
print(mmm)
elif name==33:
mmm. remove("🌲")
mmm. insert (2,"🐇")
print (num)
print (nnm)
print (mmm)
else:
print ("please, Follow the rules ")
@@ahmedsalm5713
> 18 line
Puz = [["☘", "☘", "☘"], ["☘", "☘", "☘"], ["☘", "☘", "☘"]]
print("Welcome to place the rabbit
")
print(Puz[0])
print(Puz[1])
print(Puz[2])
print("Where should the rabbit go? 🐇")
User_Choice = input("Please choose a row and a column: ")
Row = int(User_Choice[0]) - 1
Column = int(User_Choice[1]) - 1
Acceptable = ["11","12","13","21","22","23","31","32","33"]
if User_Choice in Acceptable:
print("Success ....
")
Puz[Row][Column] = "🐇"
else:
print("Please pick a valid row and column numbers")
print(Puz[0])
print(Puz[1])
print(Puz[2])
شكرا يا أستاذ إبراهيم سأحل الواجب انشاء الله ❤❤
شرح جميل ومبسط ومتدرج بارك الله لك
السلام عليكم ورحمه الله وبركاته
استاذ ابراهيم عندي سؤال بالنسبة للغة بايثون
كم راح يكون فيها درس
حطوا لايكات يا أخوان عشان يشوفها الاستاذ ابراهيم
بارك الله فيك أخي الكريم نقدر هذا المجهود الرائع
جزاك الله عنا كل خير ..
ولله الحمد والمنه حليت المشروع..
شكرا جزيلا عقبال عشرة ملايين مشترك والدرع ❤❤❤❤❤❤
أهم نصيحة تعلمتها منك: الحل غير معقد؟ لو فكرت وابتديت تكودي بتعقيد؟ STOP وهات من الأول
مشروع ممتع بجد ❤❤
صلوا على النبي ❤
ثانوية عامة. ❤❤ الله يخلليك 🎉
انا عملت بطريقة مختصرة بخطوة وحدة هيك:
basket[1][2]="tea"
ومشت معي الامور
هل ممكن يكون في مسار machine learning
حياك الله استاذ ابراهيم الله يحفظك ان شاء الله ❤
print ("welcome to place the rabbit")
mine =[ ['🌳','🌳','🌳'],['🌳','🌳','🌳'],['🌳','🌳','🌳']]
print (mine[0])
print (mine [1])
print (mine [2])
print ("where should the rabbit go? 🐇 ")
choosen = input ("please choose a row and a column ")
raw = (int(choosen[0] )) -1
column = (int(choosen[1] )) -1
numberonly=["11","12","13","21","22","23","31","32","33"]
if (choosen) in numberonly :
print ("success......")
mine[raw][column] = "🐇"
else :
print ("not available")
print (mine[0])
print (mine [1])
print (mine [2])
i did it
congrats Dania! you solved it in a pretty simplified way, it took me about 40 lines to get it solved lol
ممكن الجزء
numberonly=["11","12","13","21","22","23","31","32","33"]
if (choosen) in numberonly :
يختصر لكده
if len(numberonly)== 2 and int(user_choice)>=11:
انت فعلا ساعدتني شكرا جدا
@@sohiebelfayed673😅
هو دا الشغل عاش❤🎉
احيانا البرنامج يكتب الكواد بشكل شفاف قبل لااكتبه هل هذا شي كويس واذا لا كيف الغيه؟
هل وجدت حلا للمشكل ؟
سئ. يجاوب عنك . تقدر تعدلو من الإعدادت زيي أنا بس شوف
وصلت للحل بعد مجهود 2 ساعتين وأيضا قمت بحله ب 27 سطر
شكرا لك استاذنا
تعجز الكلمات عن شكرك
It is a good course, love you❤❤
شكرا أستاذ
هيهي سعيدة جداا💖💖.. رغم اني عرفت الحل من البداية لكن كلساع يطلعلي ايرور، وطلعت المشكلة بسيطة جدا وهي اني ما حولت الاختيار إلى رقم فبقى نص وهو سبيلي الايرور😄
عفوا يا استاذ ابراهيم ، انا حليت مشروع السلة تماما مثلك، لكن لما اعمل enter يطلع لي بدل. القائمة الجديدة كلمة none
والله العظيم انت اسطوره❤
صباح الخير مجتمع octucode ابغى طريقة لتعطيل الحل اللي يجيني في replit لما اضغط انتر لتكملة كتابة الكود ويعطيني حل سواء صح او شي متقدم
2:08
instead of removing the "water" and then appending the tea, Why wouldn't we edit the "water" to "tea".
I think the code would be concise and readable rather than being a bit verbose
yeah i was about to say the same thing .
لما اجى اضيف قائمة الارقام للbasket بيقولى
ان دى type(int)
والbasket ....type(str)
ومينفعش نضيفها ،مع انى عامل نفس الخطوات بتاعة حضرتك بالزبط
عم يطلع عندي نفس الخطأ , ارجو الحل ....
هاد اسم الخطأ AttributeError: 'tuple' object has no attribute 'append'
نفس الهطأ type error عندي
السلام عليكم ..
شكرا لحضرتك على الجهد الذي تقدمه وجعله الله بميزان حسناتك إن شاء الله ...
هل في مجال إنك تعمل كورسات في القاهرة للي حابب يتعلم البرمجة من الصفر ؟؟
ياريت ترد ع سؤالي
أومال هو بيعمل إيه هنا ؟!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
استاذ ابراهيم ازاى بعدل على القائمة سواء الفواكهه او المشروبات او غيره وانا من المفترض انى معرفش الايجابة او التعديل اللى المستخدم هيعمله ؟ ممكن توضحلى الايجابة
استاذ ابرهيم كده كورس اساسيات بايثون خلص ولا لسه هينزل فيه فديوهات
شباب ليش إبراهيم عادل اختار لغة Python يعني في ايش رح يتسخدمها في الدورة شو المسار اللي اختار
اشرح ال Dictinary ياهندسه
fruit=[['apple','banana'],['milk','water']]
print(fruit)
input('press enter to change the content')
print('here is the updated basket')
updated=[['orange','apple','banana'],['coffe','milk','tea'],['1','2','3]']]
print(updated)
thanks MR.Ibrahim for that 🤩🤩🤩🤩🤩
مرحبا .......... انا ما عرفت حل المشروع حاولت كتير بس كان تفكيري قريب للفكرة . عادي ؟؟؟؟؟
عادي أهم حاجة إنك فهمتي الفكرة ❤
شكرا استاذ ابراهيم
ربنا يوفقك ❤️
مستر هو المسار التاني هيبقي ع الابلكيشن
يا سلام على الإختلاف😂ده كان كودي:
جزاك الله خيرا
الله ينور اخى
أنا حرفيا معنديش أي فكرة هبدأ ازاي
السلام عليكم..أولا>>شكرا كتير لمجهوداتك استاذ ابراهيمز ثانيا>> ما الفرق بين .apped و extend وهل كان ينفع اقول basket.extend([1, 2, 3]) بدل basket.append([1, 2, 3])
ينفع تستخدم extend بس بشرط لازم تعمل متغير جديد وتحط الارقام فيه وبعدين تعمل اضافة القائمة الجديدة القائمة الاساسية بس مافي داعي تعمل كل هاد طالما append بتعمل اضافة فورا للقائمة 👍👍
الحمدالله في تحسن لكن if ماطلعت معي طلع كله else
انا حليت بطريقه مختلفه خالص بقاعده if بما ان عارف المستخدم هيدخل رقم معروف
print("Welcome to place of rabbit")
list1=[["🌿","🌿","🌿"],["🌿","🌿","🌿"],["🌿","🌿","🌿"]]
print(f"{list1[0]}
{list1[1]}
{list1[2]}
")
print("Where should rabbit go ?🐇
")
where=input("Please choose a row and a colomn:")
fisrt=int(where[0])
secend=int(where[1])
list1[fisrt-1].remove(list1[fisrt-1][secend-1])
list1[fisrt-1].insert(secend-1,"🐇")
print(f"{list1[0]}
{list1[1]}
{list1[2]}
")
تبارك الله عليك
الحل السهل
line1 = [ '🌲' , '🌲' , '🌲' ]
line2 = [ '🌲' , '🌲' , '🌲' ]
line3 = [ '🌲' , '🌲' , '🌲' ]
rabbit = '🐇'
all = input (f"""welcome to place the rabbit
{line1}
{line2}
{line3}
where should the rabbit go? 🐇
please choose a row and a column: """)
if all == '11':
line1[0] = rabbit
print(f"{line1}
{line2}
{line3}")
elif all == '12':
line1[1] = rabbit
print(f"{line1}
{line2}
{line3}")
elif all == '13':
line1[2] = rabbit
print(f"{line1}
{line2}
{line3}")
elif all == '21':
line2[0] = rabbit
print(f"{line1}
{line2}
{line3}")
elif all == '22':
line2[1] = rabbit
print(f"{line1}
{line2}
{line3}")
elif all == '23':
line2[2] = rabbit
print(f"{line1}
{line2}
{line3}")
elif all == '31':
line3[0] = rabbit
print(f"{line1}
{line2}
{line3}")
elif all == '32':
line3[1] = rabbit
print(f"{line1}
{line2}
{line3}")
elif all == '33':
line3[2] = rabbit
print(f"{line1}
{line2}
{line3}")
else:
print("please choose a valid row and column")
حل رائع و انا نفس الحل لكن اعتقد احنا محتاجين قابل للتغير تلقائي لكن لو في اختيارات اكتر هتاخد وقت طويل
@@احمدوحيد-ب2ذ نفس التفكير .. فعلا اكيد فيه حل مختصر عن دا بكتير عشان لو كترت الاختيارات
كيف تقدر تطبع الايموجيز ؟ لأن اني ما يصير عندي ما عرفت كيف ؟
الحل المختصر
list = [ [ '🌲' , '🌲' , '🌲' ], [ '🌲' , '🌲' , '🌲' ],[ '🌲' , '🌲' , '🌲' ] ]
rabbit = '🐇'
user =(input (f"""welcome to my app
1) {list[0]}
2) {list[1]}
3) {list[2]}
1 2 3
please put the rabbit in bothition you need ({rabbit}): """))
row = int(user[0])
column = int (user[1])
list [row-1][column-1] = rabbit
print (f"{list[0]}
{list[1]}
{list[2]}")@@Ahmed.Atwaa.
@@MisAris copy .. paste عادي
الحل
print ('Welcome to place the rabbit ')
rabbit = [['🌿','🌿','🌿'],['🌿','🌿','🌿'],['🌿','🌿','🌿']]
print()
print (rabbit[0])
print (rabbit[1])
print (rabbit[2])
print ()
print("Where should the rabbit go ? 🐇")
place = input("Please choose a row and a column :")
row = int(place[0])-1
column = int(place[1])-1
element = rabbit [row][column]
rabbit[row].remove(element)
rabbit[row].insert(column ,'🐇')
print ()
print ("success....")
print ()
print (rabbit[0])
print (rabbit[1])
print (rabbit[2])
انا استخدمت if وelif فحلها وكنت كل شوية بكتب رقم وارسم رسمتو تحتها
books=['book2',"book3",],["apples","bananas",]
print(books)
input("press enter to change the content")
a=["book4",'book5']
books[0].extend(a)
b=["oranges","lemons"]
books[1].extend(b)
books[0].insert(0,"book1")
books[1].remove("apples")
print("here is the updated basket")
print(books)
Big thanx teacher Ibrahim
Please Fix the problem in the application , 3 last videos don't open
🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉✨✨✨✨✨✨✨🎈🎈🎈🎈🎈🎈
print("Welcome to the place the rabbit")
A=["🍃","🍃","🍃"]
B=["🍃","🍃","🍃"]
C=["🍃","🍃","🍃"]
print(A)
print(B)
print(C)
print("Where should the rabbit go? 🐇")
N= input("please choose a row and a column ")
if N=="11" or N=="12" or N=="13" :
A.pop(int(N[1])-1)
A.insert(int(N[1])-1, "🐇")
print(A)
print(B)
print(C)
elif N=="21" or N=="22" or N=="23" :
B.pop(int(N[1])-1)
B.insert(int(N[1])-1, "🐇")
print(A)
print(B)
print(C)
elif N=="31" or N=="32" or N=="33" :
C.pop(int(N[1])-1)
C.insert(int(N[1])-1, "🐇")
print(A)
print(B)
print(C)
else:
print("Please choose a row and column between 1 and 3 ")
The (rabbit game ) solution video in the app has an issue,I hope you fix it
And thank you our dear teacher
You are a brave warrior on a quest. You have an inventory of items you use for your adventures.
Initial Setup:
You start with an inventory list containing: ["Sword", "Shield", "Helmet"].
Switching Items:
switch an item in your inventory. You can replace the "Helmet" with "Dragon helmet".
Merchant list:
You visit a merchant who offers new items. The merchant's items are listed as: ["Potion", "Boots", "Gloves", "Ring", "Necklace"].
Selling Items:
You decide to sell one item from your inventory. Make sure to remove it from the list. in order to buy 1 item from the merchant.
Buying New Items:
You can choose to buy any of these items and add them to your inventory.
Updating Inventory:
After buying items, update your inventory to reflect the new additions.
Displaying Inventory:
Print out your final inventory list after all updates and changes.
ممكن مشروع عن لعبة البطاقات .... حاولت فيه كتيييير و مالقيت حا ... ممكن مساعدة عشان التعليق يراه 💗💗💗💗
لو سمحتم كان أسم الموقع أيه عشان أضيف الأشكال ( الأرنب و الشجرة)
استعمل من الايموجي اللي في لوحة المفاتيح موجود الشجر والارنب
Tool- picsart
ربي يحفظك
welcome
print("Welcome to place the rabbit")
trees =[ ["🌿", "🌿", "🌿"], ["🌿", "🌿", "🌿"], ["🌿", "🌿", "🌿"] ]
print(f"{trees[0]}
{trees [1]}
{trees [2]}
")
print("Where should the raabbit go? 🐇")
position = input("please chos¥ose a row and a column ")
row= int(position [0])-1
column= int(position [1])-1
trees [row][column] ="🐇"
print("
Success . . .
")
print(f"{trees[0]}
{trees [1]}
{trees [2]}
")
ماذا لو أدخل المستخدم 44 ؟ حصل معي
print("welcome to place the rabbit")
rows= [["🌿", "🌿", "🌿" ],["🌿", "🌿", "🌿" ],["🌿", "🌿", "🌿" ]]
print(rows[0])
print(rows[1])
print(rows[2])
print("where should the rabbit go?")
place = input("please choose a row and a column ")
place_row = int(place[0])
place_row = place_row-1
place_column = int(place[1])
place_column = place_column-1
if place:
rows[place_row][place_column] = "🐇"
print("success,,,, ")
print(rows[0])
print(rows[1])
print(rows[2])
Bonsoir ☺️☺️☺️
ازاي يجماعة المستر طبع الباسكيت بعد التحديث على الكونسل من غير ما يعملها طباعة في الكود😐😐😐 امر الطباعة الاخير مفيهوش ال f-string ولا المتغير بتاع الباسكيت بعد التحديث🤔🤔
print("welcome to place the rabbit")
lis=[['🌻', '🌻', '🌻'], ['🌻', '🌻', '🌻'], ['🌻', '🌻', '🌻']]
print(f"{lis[0]}
{lis[1]}
{lis[2]}")
print("where should the rabbit go? ")
num=input("please enter a row and a column: ")
num.split()
row=int(num[0])-1
column=int(num[1])-1
lis[row][column]='🐰'
print(f"{lis[0]}
{lis[1]}
{lis[2]}")
اكو احد يكتب ملخصات وي الحلقات؟ اريد يدزها الي لطفا
وين ندزها طيب ؟
@@MisAris انطيج معرفي انستا
انطيني تلجرام مالك ودزلي هيه@@MisAris
print('welcome to place the rabbit')
mine=[['🌳','🌳','🌳'],['🌳','🌳','🌳'],['🌳','🌳','🌳']]
print(mine[0])
print(mine[1])
print(mine[2])
answer=input('where should the rabbit go ? 🐇,please choose a coulmn
')
answer_sec=input("please choose a row
")
C=int(answer)-1
R=int(answer_sec)-1
mine[C][R]="🐇"
print(mine[0])
print(mine[1])
print(mine[2])
انا عملته بطريقة تانيه
Thank
l_1 = ['🌿', '🌿', '🌿']
l_2 = ['🌿', '🌿', '🌿']
l_3 = ['🌿', '🌿', '🌿']
print('Welcome to place the rabbit')
print(l_1)
print(l_2)
print(l_3)
print('Where should the rabbit go?🐇')
n_place = input('Place choose a row and a column: ')
row = int(n_place[0])
c = int(n_place[1]) - 1
if row == 1:
l_1[c] = '🐇'
elif row == 2:
l_2[c] = '🐇'
elif row == 3:
l_3[c] = '🐇'
print(l_1)
print(l_2)
print(l_3)
my goddddd please help me to find the solution
عندما أرى الكثير يجد الحل أتفاجأ وأحبط . هل هم من من درسو برمجة من قبل أم هذه اول دراسة لهم. أنا أول دروس لي هنا على هذه القناة. ماذا افعل لارفع مستواي
الممارسة الكثيفة
وانا زيك والله ياخي مادري كيف يطلعو الحل😊
Go on 🌴🌊
print("Welcome to place the rabbit:
")
list_a=["🌿","🌿","🌿"]
list_b=["🌿","🌿","🌿"]
list_c=["🌿","🌿","🌿"]
print(list_a)
print(list_b)
print(list_c)
print("Where should the rabbit go ? 🐇 :
")
choice=int(input("Please choose a row and a colum :"))
a=choice//10
b=choice%10
if a
منين اجيب ورق الشجر من فضلك
print("Welcome to the rabbit transport game
")
trees=[
[ "🌿", "🌿", "🌿"],
[ "🌿", "🌿", "🌿"],
["🌿", "🌿", "🌿"]
]
for s in trees:
print(s)
E="🐇"
print("Pick the rabbit for one of the rows and columns", E)
Ar=input("Enter the row and column number:")
R=int(Ar[0])-1
D=int(Ar[1])-1
trees[R][D]=E
for S in trees:
print(S)
import random
print("Welcome to the rabbit transport game
")
trees=[
[ "🌿", "🌿", "🌿"],
[ "🌿", "🌿", "🌿"],
["🌿", "🌿", "🌿"]
]
for s in trees:
print(s)
E="🐇"
name_1="🎁"
print("Pick the rabbit for one of the rows and columns", E)
Ar=input("Enter the row and column number:")
R=int(Ar[0])-1
D=int(Ar[1])-1
trees[R][D] =E
name=random.randint(0, len(trees[R])-1)
trees[R][name]=name_1
if name == D:
print("You lost")
for S in trees:
print(S)
else:
print("You won")
for B in trees:
print(B)
104 years
🎉🎉🎉
❤❤❤❤❤❤❤❤❤❤❤
👍🏻
♥
The Project:
Basket = [["Apples", "Bananas"], ["Milk", "Water"]]
print (Basket)
input('Press Enter to change the content....')
print('Here is the updated Basket:')
Basket[0].insert(0, "Oranges"), Basket[0].insert(3, "Kiwis")
del Basket[1][1]
Basket[1].insert(0, 'Coffee'), Basket[1].insert(2, 'Tea')
Basket.append(['1, 2, 3'])
print (Basket)
print("welcom to place rabbit
")
list1 = [["🌿", "🌿", "🌿"], ["🌿", "🌿", "🌿"], ["🌿", "🌿", "🌿"]]
print(list1[0])
print(list1[1])
print(list1[2])
rabbit =["🐇"]
print("
where do you want to put the rabbit 🐇")
user_choice = (input("please choose row and column "))
row = int(user_choice[0])-1
column = int(user_choice[1])-1
list1 [row][column] = "🐇"
print("
......sccese......
")
print(list1[0])
print(list1[1])
print(list1[2])