أحبائنا في أكتو كود, تجدون مجموعة أكبر بكثير من الفيديوهات على التطبيق مقارنة بما هو متوفر على يوتيوب. نشجعكم على تحميل التطبيق المجاني للإستفادة الكاملة ولا تنتظروا حتى نقوم برفع المزيد على يوتيوب. يمكنك تخطي اي عدد دروس تحب من خلال التطبيق أيضا حمل اكتو كود على ايفون من هنا: apps.apple.com/us/app/octucode/id6449018676 وعلى أندرويد من هنا: play.google.com/store/apps/details?id=com.base.octucode
بارك الله فيك أنا كنت معاك من اساسيات البرمجة ولعند الحلقة هذي حاسس اني اطورت كثير من ناحية الادخال اكواد وتغيرت فكرتي على البرمجة لو في امناكية ووقت متسع اضيف حلقة خاصة بتحليل ارقام واحصائيات وتقارير
حل الحلقة القصير باستخدام choise هو كالأتي import random u = input("Enter the names of the people who will be attending dinner Andput between each name and the name of this digital sign, ") print("Who will pay for dinner is " + random.choice(u.split(", ")))
the project: print("Welcome to 'Whose Wallet?'") print("You will give me a list of names, and i will pick a person to pay") names_string = input("if you'r ready, Enter the names separated by a comma ") names = names_string.split(", ") import random random_number = random.randint(0 , len(names) -1) # len(names) start from 0 print(f"Please ask '{names[random_number]}' to take his wallet out, Dinner is on him ")
import random names=input('Enter your friends name, and please seperate them by a comma .....').lower() name=names.split(', ') comp_choice=random.choice(name) print(f'{comp_choice}, should pay for the dinner. ')
حل حلقة اليوم names = input("Welcom to 'who wallet?' You will give me a list of names, and i will pick a person to pay If you're read, enter the names separated by a comma: ").split(", ") import random pick = random.randint(0, len(names)) print(f"Please ask '{names[pick - 1]}' to take his wallet out. Dinner is on him")
import random print ("welcome to whose wallet?") print ("you will give me a list of names! and i will pick a person to pay ") persons = input("if you are ready, enter the names separated by a comma: ") names = persons.split(", ") gess = random.choice(names) print (f"please ask '{gess}' to take his wallet out. dinner is on him ")
import random students=[] B=input("inputEnter the name of the candidates(...,...) ") students.extend(B.split(",")) T=random.randint(0,len(students)) print("The most suitable candidate is:", students[T])
في السطر : T=random.randint(0,len(students)) المفروض يكون هكذا : T=random.randint(0,len(students)-1) لماذا ؟ لنفرض أن طول القائمة 4 ال index بتاع العنصر الأول هو 0 و العنصر الثاني 1 و الثالث 2 و الرابع هو 3 يعني (0,3) random.randint و هي أربع خطوات. بما أن طول القائمة 4 لو وضعنا random.randint(0,len(students)) راح تكون من (0,4) و هي خمس خطوات لا تتوافق مع طول قائمتنا.
import random print("welcome to whose wallet?") names=input("give me the names of the people in your wallet sperated by comma: ") guess=random.choice(names.split(",")) print("please ask "+ guess+ " to take his wallet out,dinner is on him")
اخي الاستاذ ابراهيم انا متابع معاك في كرس برمجه بايثون هل في لغه تاني تقدر تعملها كورس تشرحه زي c++ ٢_ كنت عاوز اعرف انتساب ايه فرق بينه وبين غير منتسب
أ.ابراهيم انا لما ادخل على اكتوكود عن طريق replit لم اجد اي شيء وانما All repls الذي يوجد فيه المشروع الاول يحمل ولا يفتح ارجو الحل(الدررس٢ في الوحده٢)
Thank you Mr. Ibrahim ❤ import random print ("""Welcome to 'Whose Wallet?' You will give me a list of names, and I will pick a person to pay""") names_string = input("If you ready, enter the names separated by a comma ").split(", ") names = len(names_string)-1 random_choice = random.randint(0,names) choice = names_string [random_choice] if random_choice == 0: print(f"Plaese ask {choice} to take his wallet out. Dinner is on him") else: print(f"Plaese ask {choice} to take his wallet out. Dinner is on him")
import random print("welcome to the (whose wallwt?) ") names1=input("if you ready, enter he names seprated a comma..") names=names1.split(", ") a=len(names) who_paid=random.randint(0,a) print(f"please ask {names[who_paid]} to take his wallet out,dinner is on him")
من الواضح أن السيدة إيفون كينت هي الأفضل، فهي تعمل مع شركة منظمة بشكل جيد. لقد استثمرت 3600 دولار وحققت لي ربحًا قدره 12600 دولار في 9 أيام فقط. إنها رائعة 🤭
مشروع بسيط لتداخل القوائم ومنتظر دروس عن القواميس لوضع القيم نتيجة الطالب وما إلى ذالك School=[ ["ChapterOne"] , ["Chapter II"] , ["Chapter III"] ] print(School[0 ] ," Please enter the names of the first semester students") i_1=input().split(",") School[0]=i_1 if i_1!="": print("Enter the names of students", i_1) print(School[1]," Please enter the names of the second chapter") i_2=input().split(",") School[1]=i_2 if i_2: print("Enter the names of the students", i_2) print(School[2]," Please enter the names of the students") i_3=input().split(",") School[2]=(i_3) if i_3: print("Enter the names of students", i_3) for I in School: print(I)
import random print('welcome to whose wallet? you will give a list of names, and I will pick a person to pay ,if you are ready,') name_freind=input("Enter the names separate with a comma,") name=name_freind.split(",") print(name) computer_name=random.choice(name) print(f'please ask {computer_name} to take his wallet out. Dinner is on him.')
import random whose_wallet=input("""welcome to 'whose wallet'.! you will give me a list of names seprated by a comma :""") names=whose_wallet.split(", ") pay=random.randint(0,len(names)) print(f"please ask '{names[pay]}' to take his wallet , the dinner is on him") ممكن مراجعه ي دكتور ..
عدل دى بس pay=random.randint(0, len(names) - 1) عشان تبقى على قد الاندكس لان ال len بتجيب الخطوات وانت عاوز الاندكس لان لو جاب رقم اخر خطوه هيعمل ايررو
# guess whose wallet ! print("Welcome to 'whose wallet ?'") print("you will give me a list of names , and i will pick a person to pay ") names = input("if you're ready , enter the names separated by a comma : ").split(",") import random Pick = random.randint(0,len(names)) print(f"please Ask '{names[Pick]}' to take this wallet out: Dinner is on him")
import random print("welcome to 'whose wallet?' ") string_names=input("you will give me a list of names and i will pick a person to pay if you are already enter names separated by a comma ") names=string_names.split(",") choice=random.randint(0,len(names)-1) print(f"please ask {names[choice]} to take his wallet out ,dinner is on him")
أحبائنا في أكتو كود, تجدون مجموعة أكبر بكثير من الفيديوهات على التطبيق مقارنة بما هو متوفر على يوتيوب. نشجعكم على تحميل التطبيق المجاني للإستفادة الكاملة ولا تنتظروا حتى نقوم برفع المزيد على يوتيوب. يمكنك تخطي اي عدد دروس تحب من خلال التطبيق أيضا
حمل اكتو كود على ايفون من هنا:
apps.apple.com/us/app/octucode/id6449018676
وعلى أندرويد من هنا:
play.google.com/store/apps/details?id=com.base.octucode
اقدر استخدم بايثون على الايباد
؟
لماذا لايوجد تحميله ع جهاز الكمبيوتر
التطبيق ما بيكملش الفيديو بيقف في النص بيطلع video URL not found
من يوم ما حملت التكييف من اول ما نزل ومفيش غير اول درسين مفتوحين وكل.ما ادخل مرضاش يفتح الدرس التالت
بعد اذن حضرتك ممكن تزود عدد الححلقات لان مع كل حلقه بنتظرها الحماس بيقل !!
مثلك والله
بالتطبيق حلقات كثيرة
حاول تقدر تعبه ايمت بدك اياه ياخذ راحته وهو عم يشتغل لحالو على القناة
موجود بالتطبيق العديد من الحلقات
ايوا صح يغالي ممكن تزود انشاء حلقات عشان ماننسى ولا نمل ياغالي
نريد عدد الحلقات بالأسبوع على الاقل تكون ٣ يوم مشاهده ويوم مراجعه للحلقة.. من مع الفكرة يصف بجانبي.. يا ريت استاذنا تزود عدد الحلقات.. بوركت جهودك..
ياريت لو تطلب منا اننا نحاول نعمل مشاريع الوحدة الجديدة بمعلومات الوحدة السابقة لأن ده فعلا هيفيد في التفكير ❤
نحن كعرب نفخر بان لدينا انسان مثلك , شكرا لك استاذ ابراهيم عادل من القلب ❤❤❤❤
استاذنا الحبيب ربنا يفتح عليك ابواب الخير من حيث لا تحتسب 🤲
2024 بدايه موفقه ان شاء الله
شكرا مستر ابراهيم
يا ريت يا استاذ تزيد عدد الحصص انا خلصتون وبانتظار الحلقات الجديدة وتعودت عاسلوبك بالشرح❤️❤️
جهودك مشكوره جزاك الله خير ان شاء الله ❤
شكرآ جدا استاذ ابراهيم ❤ بس ياريت لو ٣ حلقات ف الأسبوع او ٤و
🎉🎉🎉اسال الله التوفيق لحضرتك و لجميع المتابعين اجمعين
ربنا يجزيك الخير ويرفع قدرك ، ويحفظك ، شرح رائع ومميز عن كل الشروح ، ومعلومة صادقة ، كتر الله خيرك ..
جزاك الله خيرا أستاذ إبراهيم عادل وشكرا لك ❤❤❤
بارك الله فيك أنا كنت معاك من اساسيات البرمجة ولعند الحلقة هذي حاسس اني اطورت كثير من ناحية الادخال اكواد وتغيرت فكرتي على البرمجة
لو في امناكية ووقت متسع اضيف حلقة خاصة بتحليل ارقام واحصائيات وتقارير
حل الحلقة القصير باستخدام choise هو كالأتي import random
u = input("Enter the names of the people who will be attending dinner Andput between each name and the name of this digital sign,
")
print("Who will pay for dinner is " + random.choice(u.split(", ")))
لو ممكن بعد اذنك يا مستر عدد الحصص يزيد لاني ببقا مخلص كل حاجه و اتعودت علي شرح حضرتك
لسه مستمر؟
Thanks
شكرا من قلبي على كل مجهودك على كل قنواتك❤
ألف شكر , نتطلع لتسريع الدروس حتى لا ننفصل
❤❤❤❤🎉🎉🎉شكرا كثير حليت الكود في الليل اول ماروّحت من الشغل، انا من تونس اتابع فيك و شكرا كثير و ربي يجازيك خيرا❤
أنتظر الحلقة بفارغ الصبر ❤❤❤
جزاك الله خير الجزاء يا استاذ
استاذ انا سويت الواجب لكن استخدمت choice وكان من 4 اسطر
the project:
print("Welcome to 'Whose Wallet?'")
print("You will give me a list of names, and i will pick a person to pay")
names_string = input("if you'r ready, Enter the names separated by a comma ")
names = names_string.split(", ")
import random
random_number = random.randint(0 , len(names) -1)
# len(names) start from 0
print(f"Please ask '{names[random_number]}' to take his wallet out, Dinner is on him ")
ستاذنا الحبيب ابراهيم ربنا يزبدك من علمه ارجو بعد كورس باثيون يكون فى كورس c++ عشان محتاجو فى شغل وكون شا كر ليك
روعة تبييط العلوم❤ جزاكم الله خيرا❤
لا إله إلا الله ❤
ربنا يبارك فيك ويحفظك ويجعلة في ميزان حسناتك ❤🎉
استمر ربنا يوفقك ويثبتك ويرزقك الجنة ❤
ماشاء الله عليك يا استاذ ابراهيم.
أدب
&
وعلم
حفظ الله الامة بأمثالكم
جزاك الله خير الجزاء ورحم والديك وحفظك من كل سوء ❤❤❤
منور اليوتيوب والدنيا استاذنا الحبيب
الحمد لله تم الحل بنجاح 👌
import random
names=input('Enter your friends name, and please seperate them by a comma .....').lower()
name=names.split(', ')
comp_choice=random.choice(name)
print(f'{comp_choice}, should pay for the dinner. ')
can I get a like on my comment please
حل حلقة اليوم
names = input("Welcom to 'who wallet?'
You will give me a list of names, and i will pick a person to pay
If you're read, enter the names separated by a comma: ").split(", ")
import random
pick = random.randint(0, len(names))
print(f"Please ask '{names[pick - 1]}' to take his wallet out. Dinner is on him")
حدا لاقا حل ل مشكلة video URL not found عالتطبيق بالله
ربنا يبارك لحضرتك و يجزيك خير عننا
استاذ ابراهيم حاول انك تنزل عن السيبلاس
I'm waiting you Mr.Ibrahim 🎉
انا الصراحة بقيت انتظر الحلقات
وحاسس كأني مدمن
ومستني الحقنة بجد والله 😂
جزاك الله خيرا ❤❤❤
رجاء مستر ابراهيم رقم الحلقات ما عم نقدر نميز فيهم مثل صينين وفقك الله
من فضلك محتاجين عدد اكنر من الحلقات اسبوعيا
يا شباب بعد ما بتحلو التكاليف بترفعوها فين
يعني الحلقة القادمة سنحلها بطريقة LOUP
جزاكم الله خيرا
Names=random.choice(input)
شرح حلو بس لو في كرسات للغه الجاافا لاني بين ادرسها واشتي أفهمها اذا موجود معك كرسات ي استاذ نزلهم
ردد معي وقل سبحان الله والحمد لله ولا إله الا الله والله اكبر ولا حول ولا قوة إلا بالله العلي العظيم
متى الفرونت اند
في هذي الوحدة بالتطبيق . الدرس الرابع يشتغل للنص و فقط ، و الدرس الخامس ما يشتغل يطلع رسالة (Video URL not found) الرجاء حل المشكلة في اقرب وقت
نفس المشكله
ممكن بعد اذن حضرتك تعمل كورس لتعلم الاردوينو من الصفر
طيب بنفع هيك نستنا كل ه الوقت بالاخر هي كل الفديو🥺
import random
print ("welcome to whose wallet?")
print ("you will give me a list of names! and i will pick a person to pay ")
persons = input("if you are ready, enter the names separated by a comma: ")
names = persons.split(", ")
gess = random.choice(names)
print (f"please ask '{gess}' to take his wallet out. dinner is on him ")
ما شاء الله اللهم بارك
import random
students=[]
B=input("inputEnter the name of the candidates(...,...)
")
students.extend(B.split(","))
T=random.randint(0,len(students))
print("The most suitable candidate is:", students[T])
في السطر :
T=random.randint(0,len(students))
المفروض يكون هكذا :
T=random.randint(0,len(students)-1)
لماذا ؟
لنفرض أن طول القائمة 4
ال index بتاع العنصر الأول هو 0 و العنصر الثاني 1 و الثالث 2 و الرابع هو 3
يعني (0,3) random.randint
و هي أربع خطوات.
بما أن طول القائمة 4 لو وضعنا
random.randint(0,len(students))
راح تكون من (0,4)
و هي خمس خطوات لا تتوافق مع طول قائمتنا.
@@Japan_with_Achraf لا ياصديقي ان وضعنا - 1راح تكون النتيجه فقط اخر عنصر بالقائمه
ومابتكون عشوائيه
@@ابوخالداليماني-غ2ع كيف تكون آخر عنصر بالقائمة
هو مجال و يتم اختيار عدد عشوائي
مدمنين البرمجه يجو هنا ❤
استاذي يا ريت تسرع تنزيل الحلقات وشكرا ليك ،متابعك من سنين 🌹🌸🌸🌹🌸
You are the best 💯
الفيديو السادس من وحده (مشروع كلمة السر)
بيوصل للدقيقة الخامسة وشوي بتضهر رسالة
Video url not found
يا ريت تحللنا هي المشكله
وانا برضو
وانا نفس المشكلة
import random
print("welcome to whose wallet?")
names=input("give me the names of the people in your wallet sperated by comma:
")
guess=random.choice(names.split(","))
print("please ask "+ guess+ " to take his wallet out,dinner is on him")
اخي الاستاذ ابراهيم انا متابع معاك في كرس برمجه بايثون هل في لغه تاني تقدر تعملها كورس تشرحه زي c++
٢_ كنت عاوز اعرف انتساب ايه فرق بينه وبين غير منتسب
اخيرا❤
بعد اذنك ممكن طريقه اخفى بيها المساعد بتاع الموقع ده وانا بكتب الاكودا ؟
قصدك اللي بيكملك الكود ده صح ؟
++
حتي انا
بحس اني معملتش حاجة 😢
اي والله يخرب علي
لو عرفت تكفى علمنا
@@AsmaYsn-gh9veوش!؟
عاوزين حلقه تجمع الحلقات الي فاتت
عندما اكتب على replit يظهر لي الحل. ماذا وكيف أمنع ظهوره. رجاءا ارفعو التعليق
نفس المشكل بس حملت vs code😊
@@TOP10-nk4sg كيف احمله
استاذ زود الحلقات راح عندنا الحماس وصرنا نمل الحلقات
أ.ابراهيم انا لما ادخل على اكتوكود عن طريق replit لم اجد اي شيء وانما All repls الذي يوجد فيه المشروع الاول يحمل ولا يفتح
ارجو الحل(الدررس٢ في الوحده٢)
ادخلي علي صفحه اكتو كود علي replit ونزلي المشروع تاني
thank you
كيف اكون ممتازه بالبرمجة لان احيانا استصعب الواجب الي لازم اعلمه😢😅
اولا حطي قدامك هدفك انتي ليه عاوزه تتعلمي البرمجه
بعدين حطي الواجب قدامك تحدي وبعدين اكتبي الواجب سطر بسطر وكل سطر تعمليه اعملي run ليه عشان تشوفي انتي ماشيه صح ولا لأ
وفكري وجربي ف الكود و خدي وقتك ف التفكير وأن شاء الله تلاقي الدنيا سهله
وبالتوفيق
Thank you Mr. Ibrahim ❤
import random
print ("""Welcome to 'Whose Wallet?'
You will give me a list of names, and I will pick a person to pay""")
names_string = input("If you ready, enter the names separated by a comma
").split(", ")
names = len(names_string)-1
random_choice = random.randint(0,names)
choice = names_string [random_choice]
if random_choice == 0:
print(f"Plaese ask {choice} to take his wallet out. Dinner is on him")
else:
print(f"Plaese ask {choice} to take his wallet out. Dinner is on him")
اكملت مبادئ البرمجة وم لقيتش شهادة زي م قلت فين القاها!؟
Thanks a lot
احد يعرف هل اقدر استخدم بايثون على الايباد ؟ اذا احد يعرف يجاوبني بالله
yes u can if u want u can use replit
import random
print("welcome to the (whose wallwt?) ")
names1=input("if you ready, enter he names seprated a comma..")
names=names1.split(", ")
a=len(names)
who_paid=random.randint(0,a)
print(f"please ask {names[who_paid]} to take his wallet out,dinner is on him")
حد يقول لى ازاي اقفل packager من ال console
ازاى اعرف ترتيب الحلقات؟
هي مترتبة اصلا ..من الاساسيات وبعدين الوحدة الأولى وهكذا
هو كيف عرف إن names هي قائمة?
❤❤❤❤❤❤❤❤❤❤
Appreciate that
لو سمحت في اي طريقة اخلي الكمبيوتر يبحث عن اسم بالقائمة ولو موجود يعطيني ترتيب الاسم داخل القائمة بتمنى الرد باقرب وقت 😊❤❤
نعم يوجد
استخدم الوظيفة ()index
هذه الوظيفة تبحث عن عنصر في القائمة و تعطيك ال index بتاعو
طريقة استخدامها :
Name_list.index(element, begin,end)
في index للبحث عن خانة في القائمة وفي count كم عدد مرات موجودة الكلمة هاي في الخانة
من فضلك، هل يمكن لأي شخص أن يوصيني بمتداول خبير في العملات المشفرة ليرشدني، لقد كنت أتداول بمفردي وفقدت كل شيء في محفظتي 😥،
كيف يمكنني التواصل مع إيفون كينت، أريد حقا الاستثمار وتحقيق الأرباح
@Jameson-xj1rpأخي سؤال شو في مواقع اقدر اربح منها ؟
أين أبحث عن الاسم، أي منصة.
من الواضح أن السيدة إيفون كينت هي الأفضل، فهي تعمل مع شركة منظمة بشكل جيد. لقد استثمرت 3600 دولار وحققت لي ربحًا قدره 12600 دولار في 9 أيام فقط. إنها رائعة 🤭
شكرًا على معلومات الاتصال، لقد راسلتها الآن واستجابت بشكل جيد
حد يعرف لو لون كتابة الكود اتغير وبقي أبيض ازاي أغيره الوان ذي ماكان ؟
اعتقد من الاعدادات
مشروع بسيط لتداخل القوائم ومنتظر دروس عن القواميس لوضع القيم نتيجة الطالب وما إلى ذالك
School=[
["ChapterOne"]
, ["Chapter II"] ,
["Chapter III"]
]
print(School[0 ] ,"
Please enter the names of the first semester students")
i_1=input().split(",")
School[0]=i_1
if i_1!="":
print("Enter the names of students", i_1)
print(School[1],"
Please enter the names of the second chapter")
i_2=input().split(",")
School[1]=i_2
if i_2:
print("Enter the names of the students", i_2)
print(School[2],"
Please enter the names of the students")
i_3=input().split(",")
School[2]=(i_3)
if i_3:
print("Enter the names of students", i_3)
for I in School:
print(I)
جزاك الله خيراً والله يرزقك ويرزق منك
🔥🔥🔥🔥
import random
print('welcome to whose wallet?
you will give a list of names, and I will pick a person to pay ,if you are ready,')
name_freind=input("Enter the names separate with a comma,")
name=name_freind.split(",")
print(name)
computer_name=random.choice(name)
print(f'please ask {computer_name} to take his wallet out. Dinner is on him.')
🌹🌹🌹🌹
import random
whose_wallet=input("""welcome to 'whose wallet'.!
you will give me a list of names seprated by a comma :""")
names=whose_wallet.split(", ")
pay=random.randint(0,len(names))
print(f"please ask '{names[pay]}' to take his wallet , the dinner is on him")
ممكن مراجعه ي دكتور ..
عدل دى بس
pay=random.randint(0, len(names) - 1)
عشان تبقى على قد الاندكس لان ال len بتجيب الخطوات وانت عاوز الاندكس لان لو جاب رقم اخر خطوه هيعمل ايررو
@@Dev_M0d ايوة فعلا مراتت بنفذ وبشتغل ، ومرات بجيب ايرور. . شكرا
nice@@Dev_M0d
❤❤❤❤❤❤❤❤❤❤❤❤❤
👍🏻
❤❤❤❤❤❤❤❤❤
😍
❤❤❤
رسالة الى كل يلي عم يتابعو هاد المحترم: اذا ستمريتو هيك رح تضلو تغرقو بالمستنقع ورح تضيعو عمركن
😍😍
🎉❤🎉❤🎉❤
.....❤️❤️❤️❤️❤️❤️❤️
# guess whose wallet !
print("Welcome to 'whose wallet ?'")
print("you will give me a list of names , and i will pick a person to pay ")
names = input("if you're ready , enter the names separated by a comma : ").split(",")
import random
Pick = random.randint(0,len(names))
print(f"please Ask '{names[Pick]}' to take this wallet out: Dinner is on him")
الطريقة الثانية هي
random.choice()
import random
print("welcome to 'whose wallet?' ")
string_names=input("you will give me a list of names and i will pick a person to pay if you are already enter names separated by a comma ")
names=string_names.split(",")
choice=random.randint(0,len(names)-1)
print(f"please ask {names[choice]} to take his wallet out ,dinner is on him")
ما معني {names[choice]} ؟
@@Ahmedmohamed-ww4ls {} دى تبع f - string ال اخدناها
choice دا اختيار الكومبيوتر لو ادخلت تلت اسماء اختيار الكومبيوتر هيبقى ص صفر او واحد او اتنين
ليش -1