أحبائنا في أكتو كود, تجدون مجموعة أكبر بكثير من الفيديوهات على التطبيق مقارنة بما هو متوفر على يوتيوب. نشجعكم على تحميل التطبيق المجاني للإستفادة الكاملة ولا تنتظروا حتى نقوم برفع المزيد على يوتيوب. يمكنك تخطي اي عدد دروس تحب من خلال التطبيق أيضا حمل اكتو كود على ايفون من هنا: apps.apple.com/us/app/octucode/id6449018676 وعلى أندرويد من هنا: play.google.com/store/apps/details?id=com.base.octucode
يا جماعه اللي عاوز يشيل الاقتراحات من replit انا عملتها اخيرا بعد ما قعدت اجرب هتخش علي replit عادي جدا هتختار settings الاعدادات هتلاقو كلمة اسمها Accept suggestion هتلاقوها تالت واحدة علي طول❤❤❤ اي خدمة
مستر ابراهيم مشغوول جدا احنا نتعاون معه ومانثقل عليه كم بيكون هو يحضر البايثون ويحضر مشاريع وفيديوهات وووووو وتشتوه يجيب لكم ملخص كل واحد يظهر ابداعه ويسوي هو ملخص ونخلي المستر يشوف افضل ملخص ونرجع نتخذة لنا كلنا اتمنى تكون وصلت الفكرة🎉
يلي يعمل على القناة مو استاذ ابراهيم هو فقط يقدم فيديوهات يقدروا صاحبين الشركة او العمل انهم يعملوا ملخص بدون ما يحتاجوا ان يتكلم استاذ ابراهيم@@MohanedAlabdali
تعليم و تدقيق رائع ماشاء الله الله يرزقك كل خير و لكل الفريق إن شاء الله اللهم أنصر إخواننا في فلسطين و ارزقهم الثبات اللهم كن مع إخواننا في غزة و افتح عليهم أبواب خيراتك ، اللهم ارحم موتاهم و تقبل شهداءهم و اشف مرضاهم و داوي جرحاهم و احفظهم من كل سوء يا رب العالمين . 🎉🎉🎉🎉❤❤❤❤❤🎉🎉🎉🎉
انا بافتخر بافضل استاذ برمجة وانجليزي وصيني وكل وحدة فيهم انت الشخص الذي شجعني على تعلمها وبالذات الصيني والبرمجة وانصح كل شخص يرى هاذا التعليق ان يتعلم الصينية ومن اول درس سيعلمكم الاستاذ ابراهيم عادل الكتابة واللفظ انه اسطورة في التعليم والتحبيب بالعلم وتحياتي للاستاذ ابراهيم
multi=print("*** welcom to multiplication table *** :") number=int(input("enter a number:")) print(f"multiplication table for {number} :") for i in range(1,11): result=number*i print(f"{number} x {i} = {result}")
اللهم اغفر لي ولوالداي والمسلمين والمسلمات الاحياء منهم والاموات صلي علي النبي اللهم اغفر لي ولوالداي والمسلمين والمسلمات الاحياء منهم والاموات صلي علي النبي
اقول لك ما علمنا نبينا قال رسول الله من صنع لهُ معروف فقال لصاحبه جزاك الله خيراً، فقد أبْلَغ في الثناء» قال عمر بن الخطاب رَضِعَ اللَّهُ عَنْهُ : لو يعلمُ أحدكم ما لَهُ في قوله لأخيه: لأكثر منها بَعضُكُم لِبَعْض )) جزاك الله خيراً ؛ مجالس الذكر صحيح الجامع » (708) / مصنف ابن أبي شيبة » 436/1)
I've been waiting for 24 hours but the next episode doesn't open. I hope you fix this problem as soon as you can. I'm in (مشروع كلمة السر), lesson 9 doesn't open.
Please Mr. Ibrahim, is there a process that allows us of an online programing like replit but to be permanent (not only 15 project like you said previously). Because I will not be able to download any apps on the computer (that is not personal).
names=[] numbers=[] number=int(input("enter a number ")) print(" let's get count them") for i in range(1,number+1): item_name=input(f"what is the name of the object number '{i}'? ") price=float(input("what the price $")) names.append(item_name) numbers.append(price) ask=input("would you like to see all the items? ").lower() if ask =='yes': print(names) cost=input("would you like to see the price? ").lower() if cost=='yes': print("buying these items will cost: ") print(sum(numbers)) الحمد لله حمدا كثيرا مباركا فيه👌😁
@@MohanedAlabdali capitalize تخلي اول حرف من اول كلمة حرف كبير وباقي الكلمات احرف صغيرة مثال : text = "hello World" print (text.capitalize()) النتيجة : Hello world
print(' *****Welcome to the multiplication table*****') numbers=int(input(' Enter a number: ')) print(f' The multiplication table of {inpu} is: ') for i in range(1,11): print(numbers'x',i,'=',numbers*i)
print ('Welcome to ishop calculator') Names = [ ] Cost = [ ] i = int(input('How many items are there ? ')) for i in range (1,i+1) : x = input ('please tell me the name of the item number' + str(i)+' ') Names.append (x) v = float(input('What is the price of ' + x + ' $' )) Cost.append(v) y= input ('Would you like to see your entire basket yes or no ').lower ( ) if y == 'yes' : print (Names) elif y == 'no' : print ('ok') z = input('Would you like to see how much it is cost yes or no ').lower ( ) if z == 'yes' : c = sum(Cost) print ('Buying these items will cost : $' + str(c)) elif z =='no' : print ('ok') بالتوفيق للجميع ❤❤🙏🙏
print("здравствуйте,'касс'готов для помочь ") products_1=[] prices=[] products=input("скажите пожалуйста сколько продуктов вы купили?") for x in products: product=input(f"какой продукт номер{x}") products_1.append(product) price=input(int(f"сколько стоит{x}")) prices.append(price) print(f"вы купили {products_1},/n тотал ={sum(prices)}")
items=[] prices = [] print("Welcome to ISHOP calculator 🧑🏾💻") print("Okey ! let us get to counting them ..") number_of_items = int(input("How many items in your basket ? ")) for i in range(0,number_of_items): Q_1 = input(f"please tell me the name of the item number{i+1} : ") items.append(Q_1) Q_2 = int(input(("please tell me the price of him ? "))) prices.append(Q_2) their_names = input("Do you want to know what are your items ? ") their_cost = input("Do you want to know their cost ? ") if their_names =="yes".lower(): print(items) if their_cost =="yes".lower(): print(sum(prices)) else: print("okey as you like ! ") else: print("okey ! as you like ")
Nums = int(input("Enter the nums of your stuf: ")) Stuf = [] Price = [] for X in range(1,Nums+1): stuf_answers = input(f"Enter the stuf num {X}: ") price_answers = float(input(f"What is the price of {stuf_answers}: $")) Stuf.append(stuf_answers) Price.append(price_answers) Qiution = input("Would you see your stufs? ").upper() if Qiution == "YES": print(Stuf) else: input("Press Enter to exit.....") Qiution2 = input("Would you see the price of your stufs? ").lower() if Qiution2 == "yes": print(sum(Price)) else: input("Press Enter to exit.....")
حلي المتواضع print (" ✯✯✯✯✯ welcome to the ishop calculator ✯✯✯✯✯✯ ") number = int (input ("how many items there in your basket today ? : ")) print("let's get counting them ..... ") items = [] prices = [] for x in range (number) : name = input(f"please tell me the name of the item number {x+1}: ") items.append(name) price =int (input(f"what is the price of {name} ")) prices.append(price) basket = input("would you like to see your rntire basket items : (yes or no) ") if basket == "yes": print(items) total_price = input("would you like to see how mutch it'll cost : (yes or no) ") if taman == "yes": print(f"{sum (prices)} dh")
print ("***** welcome to ishop calculator *****") fruits =[] numbers = [] basket = int(input("how many items are there in your basket today?")) for x in range(1,4): print("lets get to counting them...") tell = input(f"please tell me the name of item number {x}:") fruits.append(tell) price = float(input(f"What is the price of {tell} $")) numbers.append(price) much = input("Would you like to see your entire basket items?") if much == "yes": print(fruits) else: input("Press enter to continue") total = input("Would you like to see how much it'll cost?") if total == "yes": print(sum(numbers)) else: input("Press enter to exit")
basket = [] cost = [] print(" *** Welcome to your Market caculator *** ") items_count = int(input("How many items are in your pasket today? ")) if items_count > 0: print("Let's get to counting them... ") for s in range(1,items_count+1): item_name = input(f"Please tell me the name of the item number {s} ") basket.append(item_name) item_price = float(input(f"What is the price of {item_name} $")) cost.append(item_price) items_view = input("Would you like to see your entire basket items? ").lower() if items_view == "yes": print(basket) items_cost = input("Would you like to see how much it will cost? ").lower() if items_cost == "yes": print(sum(cost))
print(""" *** Welcome to ishop calculator *** """) basket=[] list=[] items=int(input("How many items do you have in your basket today?: ")) print("Let's go counting them.....") for x in range(items): name=input(f"please tell me the name of the item number {x+1}: ") price=float(input(f"what is the price of {name} $")) basket.append(name) list.append(price) check=input("Would you like to see your basket's items? (yes/no) ").lower() if check == "no": print("Press Enter to exit") else: print(basket) cost=input("Would you like to see how much will it cost? (yes/no) ").lower() if cost=="no": print("Press Enter to exit") else: print(f"Buying these items will cost you {(sum(list))}$")
اسهل تحدي: f=[] g=[] a=input("Enter your tasks for today separated by commas: ").split(",") for b in a: print(f" {b} ") c=input(f"Did you finish {b} already? (yes/no): ").lower() if c=="yes": print("Nice job") print("----------") f.append(b) elif c=="no": print("Try not to put it off") print("----------") g.append(b) else: print("Invalid choice. Please enter yes or no.") exit() d=input("Do you want to see your today's progress? (yes/no): ").lower() if d=="yes": print(f"progressed tasks: {f} ",f"tasks left:{g} ") elif d== "no": print("ok") else: print("Invalid choice. Please enter yes or no.")
This's my project but it has many problems,someone can help me? print(" *******Welcome to the ishop basket*****") Number = (int(input("How many items in your basket:"))) print("Let's go to counting them....") for i in range(Number): name_of_num = input(f"Please tell me the name of the item number {i + 1}:") price = int(input(f"What's the price of the {name_of_num}:$")) list_2=[] list_2.append(price) the_basket = input("Would you like to see your basket(yes,no):").lower() if the_basket == "yes": list=[] list.append(name_of_num) print(list) else: pass cost=input("Would you see how much it'll cost?") if cost=="yes": print("Buying these items will cost: ",sum(list_2))
print(" *******Welcome to the ishop basket*****") Number = (int(input("How many items in your basket:"))) print("Let's go to counting them....") list=[] list_2=[] for i in range(Number): name_of_num = input(f"Please tell me the name of the item number {i + 1}:") list.append(name_of_num) price = int(input(f"What's the price of the {name_of_num}:$")) list_2.append(price) the_basket = input("Would you like to see your basket(yes,no):").lower() if the_basket == "yes": print(list) else: pass cost=input("Would you see how much it'll cost?") if cost=="yes": print("Buying these items will cost: ",sum(list_2))
print("welcome to ishop calculator ") shop=int(input("how many items are there in your basket today?:")) print ("let's get to counting them.... ") basket=[] prices=[] for bask in range(1,shop+1): chop=input(f"please tell me the name of the item number {bask}:") price=float(input (f"what is the price of {chop} ")) basket.append(chop) prices.append(price) ask=input("wuold you like to see your entire basket items?").lower() if ask=="yes": print(basket) ask_1=input("would you like to see how much it will cost?") if ask_1=="yes": print(sum(prices))
print("***Welcome to iShop Calculator ***") items=int(input("How many items are there in our basket today? ")) basket=[] prices=[] print("Lets to counting them...") for i in range(1,items+1): item=input(f"Please tell me the name of the item number {i} ") price=float(input(f"What'is the price of {item} $")) prices.append(price) basket.append(item) reponse=input("Would you like to see your entire basket items?") if reponse=="yes": print(basket) else: print() total=input("Would you like to see how much it'll cost ?") if total=="yes": print(f"Buying these items will cost: {sum(prices)} $")
أحبائنا في أكتو كود, تجدون مجموعة أكبر بكثير من الفيديوهات على التطبيق مقارنة بما هو متوفر على يوتيوب. نشجعكم على تحميل التطبيق المجاني للإستفادة الكاملة ولا تنتظروا حتى نقوم برفع المزيد على يوتيوب. يمكنك تخطي اي عدد دروس تحب من خلال التطبيق أيضا
حمل اكتو كود على ايفون من هنا:
apps.apple.com/us/app/octucode/id6449018676
وعلى أندرويد من هنا:
play.google.com/store/apps/details?id=com.base.octucode
انا فخور جدا بيك وانك وصلتنا للمرحلة وفخور بنفسي كمان شكرا جزيلا
الحممممدلله بفضل الله وكرمه ثم بفضلك سويت المشروع في ١٦ سطر لحالي الحمدلله الله يثبت علي وعليكم علمنا وديننا ويوفق استاذ ابراهيم في دنياه واخرته💗💗💗💗✨️
سهلة
7:44
print ("welcome")
dhiaa = float(input ("please enter the nember : "))
for x in range (0,11) :
print (x,"x",dhiaa,"=",x*dhiaa)
في أربع سطور
الحمدلله
انتهيت من المشروع بسرعة وبطريقة صحيحة
كم أنا سعيدة وفخورة بذلك
جزال الله خيرا
انا ايضا فخور بيك و العائلة ايضا استمري
يا جماعه اللي عاوز يشيل الاقتراحات من replit انا عملتها اخيرا بعد ما قعدت اجرب هتخش علي replit عادي جدا هتختار settings الاعدادات هتلاقو كلمة اسمها Accept suggestion هتلاقوها تالت واحدة علي طول❤❤❤ اي خدمة
اجيب ال settings منين
شكرا انا بدأت اشتغل فب vs code
@@magdy1909الاعدادات
الحمد لله أنتهيت من المشروع ب21 سطر فقط
الشكراً لله.. ثم لك أستاذي
اتمني من حضرتك يا استاذ ابراهيم تعملنا ملخص بيجمع فيه كل ال خدنه لحد الوحده دي
مستر ابراهيم مشغوول جدا احنا نتعاون معه ومانثقل عليه كم بيكون هو يحضر البايثون ويحضر مشاريع وفيديوهات وووووو وتشتوه يجيب لكم ملخص كل واحد يظهر ابداعه ويسوي هو ملخص ونخلي المستر يشوف افضل ملخص ونرجع نتخذة لنا كلنا اتمنى تكون وصلت الفكرة🎉
يلي يعمل على القناة مو استاذ ابراهيم هو فقط يقدم فيديوهات يقدروا صاحبين الشركة او العمل انهم يعملوا ملخص بدون ما يحتاجوا ان يتكلم استاذ ابراهيم@@MohanedAlabdali
بفضل الله تعالى استطعت حل المشروع بكفائة عالية ولله الحمد.
أسعر بالفخر حقا...أنا أتقدم كل يوم
والله حليته كم انا مفتخر بنفسي بفضل الله وفضلك استاذ ابراهيم
شكرا جزيلا لك استاذ الحمد لله اني عرفتك وعرفت قناتك جدا سعيده وفخوره بنفسي لوصولي لهذا المستوى بفضل الله ثم بفضلك شكرا لك❤
اسأل الله ان العظيم يكرمك ويوفقك ويجزيك خير الجزاء ويرحم والديك ويحفظك من كل سوء ❤❤❤
الله يوفقك ويكرمك
اذا بالامكان انك تنزللنا كل يومين حلقة منكون الك من الشاكرين
الحمدلله حلليتها ب 13 سطر من اول محاولة جداااااااا فخور
وكل الشكر لاستاذنا ابراهيم عظم الله اجرك🙏🙏
شكرا استاذ ابراهيم عادل على مجهودك
واتمنى ابدا قريب فى التعلم إن شاء الله
بارك الله فيك ان شاء الله استاذ ابراهيم يعجز اللسان عن الشكر والتقدير لك تستاهل كل خير ان شاء الله ❤
تعليم و تدقيق رائع ماشاء الله
الله يرزقك كل خير و لكل الفريق إن شاء الله
اللهم أنصر إخواننا في فلسطين و ارزقهم الثبات
اللهم كن مع إخواننا في غزة و افتح عليهم أبواب خيراتك ، اللهم ارحم موتاهم و تقبل شهداءهم و اشف مرضاهم و داوي جرحاهم و احفظهم من كل سوء يا رب العالمين .
🎉🎉🎉🎉❤❤❤❤❤🎉🎉🎉🎉
انتا هدية لنا من الله ❤❤
انا بافتخر بافضل استاذ برمجة وانجليزي وصيني وكل وحدة فيهم انت الشخص الذي شجعني على تعلمها وبالذات الصيني والبرمجة وانصح كل شخص يرى هاذا التعليق ان يتعلم الصينية ومن اول درس سيعلمكم الاستاذ ابراهيم عادل الكتابة واللفظ انه اسطورة في التعليم والتحبيب بالعلم وتحياتي للاستاذ ابراهيم
شكرا جزيلا, منطقي البرمجي تحسن كثيراً
تبا لك ايها التحديث الجديد افسدت علينا التحدى😀😀توصلت للحل ولكن بمساعدة اقتراحات Replit 🤣🤣
عل يمين من تحت في صورة بللورة اضغط عليها و بعدا اكبس على enable
اه والله
ده عذاب والله 😂
أنا نزلت vs code عشان أكتب عليه
ضميري كان بياكلني
مكنتش قادر ارضي عن نفسي بسبب التلميحات في replit 😅
عرفت تحل المشكلة؟
كيف ازيلها لانه احسن أنه مابستفيد بسببها@@محمدبايخ
شكرا لحضرتك على الاستمرار على المحتوى القمر دا 💕
يااستاذ ممكن تعلمنا كيف نصنع اول لعبه لينا عشان نشجع انفسنا اننا نتم الدراسه وشكرا❤❤ شباب ارفعوا لايكات عشان يشوفوا
ابراهيم! الله يبارك في مجهودك الجبار والابداعي... رداء كمل.. وياريت تعمل كورس في الباش
ابداع دائم استاذنا الكريم ، بارك الله في جهودكم .
شكرا جدا لتعبك ده وربنا يوفقك ❤ الحمد لله خلصتو وبنفس الاداة ❤
Momken twriny el 3mlto !
multi=print("*** welcom to multiplication table ***
:")
number=int(input("enter a number:"))
print(f"multiplication table for {number} :")
for i in range(1,11):
result=number*i
print(f"{number} x {i} = {result}")
شكرا جزيلا فعلا
رهيب جدا طريقة الشرح❤❤❤❤
استاذ ابراهيم فيك تشرحلنا عن خوارزمية هوفمان لترميز النصوص و لضغط البيانات و كيف فينا نحلها عبر بايثون
وفقك الله وسدد خطاك استاذنا الفاضل
لا اله الا الله سيدنا محمد صلى الله عليه وسلم رسول الله ❤
"يارب يزيدك فضلا وعزا وكرما " تسلم ايدك يا استاذ ابراهيم
جزاك الله خيراً افضل مبرمج لولاك ما كنت بوصل للمستوى اللي وصلتلو❤
لولا الله ثم المستر ابراهيم❤
ببقى في غاية السعادة لما بحل مشكلة ❤❤
انا خلصت مشروع hangman وفي انتظار الحلقة الجديده والتكليف الجديد علي الابلكيشن❤
تعلالي 😂
عملت اي فيها
الكومنت جاي مقلوب ليه😢 المهم المتغير ده تخزن فيه عدد المحاولات
هل الابلكيشن آمن حضرتك جربته ؟
يا مستر ابراهيم لو تكرمت من بعد اذنك نريد تعلمنا لغه ++c
اه ياريت ولله
❤ @@كريمسعد-ز3س
نعمل ايه في الفترة اللي مستنين فيها الفيديو اللي جاي علشان مننساش اللي فات
مراجعة الدروس من البداية وتطبق بنفسك بدون مساعدة
اعد كتابه التكاليف السابقه بشكل اسرع من قبل❤
كيف ممكن الغي اقتراحات replit ؟.حاسس حالي ما بحل مثل ما لازم
هل عرفت كيف تلغي الإقتراحات
قلي كيف
يمكن الغائها ببساطة من الاعدادات ياشباب
اللهم اغفر لي ولوالداي والمسلمين والمسلمات الاحياء منهم والاموات
صلي علي النبي
اللهم اغفر لي ولوالداي والمسلمين والمسلمات الاحياء منهم والاموات
صلي علي النبي
الحمد لله ❤
اقول لك ما علمنا نبينا قال رسول الله
من صنع لهُ معروف فقال لصاحبه
جزاك الله خيراً، فقد أبْلَغ في الثناء»
قال عمر بن الخطاب رَضِعَ اللَّهُ عَنْهُ : لو يعلمُ أحدكم ما لَهُ في قوله لأخيه: لأكثر منها بَعضُكُم لِبَعْض ))
جزاك الله خيراً ؛
مجالس الذكر
صحيح الجامع » (708) / مصنف ابن أبي شيبة » 436/1)
ممكن طريقة شرح كتابة print بالطريقة دي او اتشرحت فين بالظبط 2:43
كانت مشروحه تقريبا ف الاول كان استاذ ابراهيم بيحل مشروع وشرحها
رائع مشكور يا حبذا المزيد من التمرينات
إني والله احبك في الله يافنان
استاذ ابراهيم عادل يا ريت تخلي برنامج octucode يشتغل على أجهزة الهواوي مثل التطبيقات الآخرة
🎉🎉🎉🎉🎉🎉❤I pray my god will protect You, U Are the most successful man i have known in my life keep going we all with You ✊
احسن مدرس ❤❤❤
print("welcome to multiplication table")
number=int(input("enter the number: "))
for i in range(1,11):
print(number ,"x",i ,"=" ,number*i )
هو ممكن نعمل مشروع للموظفين لأن احنا مدرسناش نقارن بين تاريخين بحيث أن المستخدم يدخل تاريخ تعيينه والبرنامج يظهر الترقية القادمة
I've been waiting for 24 hours but the next episode doesn't open. I hope you fix this problem as soon as you can. I'm in (مشروع كلمة السر), lesson 9 doesn't open.
نفس المشكلة لكن مع وحدة لعبة الدمية التفاعلية
يا استاذ لم افهم المشروع تبع جدول الضرب ما فهمت سوىوكيف ضربها
Thank you very much
شكرا أستاذا ابراهيم
اللهم اغفر لي ولوالداي والمسلمين والمسلمات االحياء منهم واالموات
صلي علي النبي
بارك الله فيك
Please Mr. Ibrahim, is there a process that allows us of an online programing like replit but to be permanent (not only 15 project like you said previously). Because I will not be able to download any apps on the computer (that is not personal).
multy = int(input("pleaz enter a number : "))
print()
for multyk in range(0 , 11):
total = multyk * multy
print (f"{multy} * {multyk} = {total}" )
Much respect for you❤❤❤❤❤
ربنا يباركلك يارب
names=[]
numbers=[]
number=int(input("enter a number
"))
print("
let's get count them")
for i in range(1,number+1):
item_name=input(f"what is the name of the object number '{i}'?
")
price=float(input("what the price
$"))
names.append(item_name)
numbers.append(price)
ask=input("would you like to see all the items?
").lower()
if ask =='yes':
print(names)
cost=input("would you like to see the price?
").lower()
if cost=='yes':
print("buying these items will cost:
")
print(sum(numbers))
الحمد لله حمدا كثيرا مباركا فيه👌😁
جبد جدا نفس طريقة حلي تماما الإختلاف فقط في أسماء المساحات
ليش ما نسوي upper للتحق باي طريقة يكتبها
تقدر تستخدم upper او lower ما في مشكلة
@@Dr_Pythonاي او كابيتلايز
@@MohanedAlabdali capitalize
تخلي اول حرف من اول كلمة حرف كبير وباقي الكلمات احرف صغيرة
مثال :
text = "hello World"
print (text.capitalize())
النتيجة :
Hello world
بحالة اردنا جعل اول حرف من كل كلمة حرف كبير نستخدم title
مثال :
text = "hello to my World"
print (text.title())
النتيجة
Hello To My World
thanks a lot my theacher my Allah bless you 🤩🤩🤩🤩🤩
3:18
شككراااااااا دكتوررررررررررررررررررر
number=int(input("give me a number:
"))
print(f"multiplication table for {number}:
")
for j in range(1,11):
print(f"{number}*{j}=",number*j)
Thx ❤
لماذا تم كتابة(""")ثلاث في السطر 29
print("""
""")
لو تقصد الامر هذا يستخدم للطباعة على اكثر من سطر
شكرا جزيلا ماشاء الله عليك مبدع@@Dr_Python
ربنا يبارك لحضرتك
استاذ ابراهيم انا حليت المشروع بس بغير طريقة وطلعت نفس النتيجة
في حد حل المشروع !؟
انهي واحد
@@abdosaber6834 المشروع الاخير ف الفيديو دا ؟
كتبت الحل بالتعليقات
@@Dr_Python تسلم يا صديقي ربنا يباركلك♥️
نعم
print('
*****Welcome to the multiplication table*****')
numbers=int(input('
Enter a number: '))
print(f'
The multiplication table of {inpu} is: ')
for i in range(1,11):
print(numbers'x',i,'=',numbers*i)
متى رح نروح على VSCode
ما شاء الله ❤
عندي مشكلة ان نتيجة القسمة تكون ارقام متكررة مثل 2×5=55
حضرتك مبتشفش التعليقات وله اي
من فطرة بكتب لحضرتك عن ال ++c 😢
what a complicated project
سويته بكود واحد
The task is done
👍🏻
✔️22-1-2024✔️
❤❤❤❤❤❤
numb=int(input('welcome tothe * table
please enter a number:'))
for i in range(1,11):
y=numb*i
str(numb)
str(i)
print(numb,'x',i,'=',y)
❤❤❤❤❤❤❤❤❤❤
🎉❤🎉
🤍🤍🤍🤍🤍
اكبر عائق هوا الانكليزي كتابتا 😢
💃💃🎉
خلا ص حلمي انتهى
ليه بتقول كدا
print ('Welcome to ishop calculator')
Names = [ ]
Cost = [ ]
i = int(input('How many items are there ?
'))
for i in range (1,i+1) :
x = input ('please tell me the name of the item number' + str(i)+'
')
Names.append (x)
v = float(input('What is the price of ' + x + '
$' ))
Cost.append(v)
y= input ('Would you like to see your entire basket yes or no
').lower ( )
if y == 'yes' :
print (Names)
elif y == 'no' :
print ('ok')
z = input('Would you like to see how much it is cost yes or no
').lower ( )
if z == 'yes' :
c = sum(Cost)
print ('Buying these items will cost : $' + str(c))
elif z =='no' :
print ('ok')
بالتوفيق للجميع ❤❤🙏🙏
👏
ياريت ياجماعه نعمل قروب تلغرام عشان نتناقش فيه
ياريت
@@alaasaifeldeen3032 اتفق
print("здравствуйте,'касс'готов для помочь ")
products_1=[]
prices=[]
products=input("скажите пожалуйста сколько продуктов вы купили?")
for x in products:
product=input(f"какой продукт номер{x}")
products_1.append(product)
price=input(int(f"сколько стоит{x}"))
prices.append(price)
print(f"вы купили {products_1},/n тотал ={sum(prices)}")
items=[]
prices = []
print("Welcome to ISHOP calculator 🧑🏾💻")
print("Okey ! let us get to counting them ..")
number_of_items = int(input("How many items in your basket ? "))
for i in range(0,number_of_items):
Q_1 = input(f"please tell me the name of the item number{i+1} : ")
items.append(Q_1)
Q_2 = int(input(("please tell me the price of him ? ")))
prices.append(Q_2)
their_names = input("Do you want to know what are your items ? ")
their_cost = input("Do you want to know their cost ? ")
if their_names =="yes".lower():
print(items)
if their_cost =="yes".lower():
print(sum(prices))
else:
print("okey as you like ! ")
else:
print("okey ! as you like ")
Nums = int(input("Enter the nums of your stuf:
"))
Stuf = []
Price = []
for X in range(1,Nums+1):
stuf_answers = input(f"Enter the stuf num {X}:
")
price_answers = float(input(f"What is the price of {stuf_answers}:
$"))
Stuf.append(stuf_answers)
Price.append(price_answers)
Qiution = input("Would you see your stufs?
").upper()
if Qiution == "YES":
print(Stuf)
else:
input("Press Enter to exit.....")
Qiution2 = input("Would you see the price of your stufs?
").lower()
if Qiution2 == "yes":
print(sum(Price))
else:
input("Press Enter to exit.....")
حلي المتواضع
print (" ✯✯✯✯✯ welcome to the ishop calculator ✯✯✯✯✯✯ ")
number = int (input ("how many items there in your basket today ? :
"))
print("let's get counting them ..... ")
items = []
prices = []
for x in range (number) :
name = input(f"please tell me the name of the item number {x+1}:
")
items.append(name)
price =int (input(f"what is the price of {name}
"))
prices.append(price)
basket = input("would you like to see your rntire basket items : (yes or no)
")
if basket == "yes":
print(items)
total_price = input("would you like to see how mutch it'll cost : (yes or no)
")
if taman == "yes":
print(f"{sum (prices)} dh")
زادك الله علما❤
print ("***** welcome to ishop calculator *****")
fruits =[]
numbers = []
basket = int(input("how many items are there in your basket today?"))
for x in range(1,4):
print("lets get to counting them...")
tell = input(f"please tell me the name of item number {x}:")
fruits.append(tell)
price = float(input(f"What is the price of {tell}
$"))
numbers.append(price)
much = input("Would you like to see your entire basket items?")
if much == "yes":
print(fruits)
else:
input("Press enter to continue")
total = input("Would you like to see how much it'll cost?")
if total == "yes":
print(sum(numbers))
else:
input("Press enter to exit")
basket = []
cost = []
print("
*** Welcome to your Market caculator ***
")
items_count = int(input("How many items are in your pasket today? "))
if items_count > 0:
print("Let's get to counting them... ")
for s in range(1,items_count+1):
item_name = input(f"Please tell me the name of the item number {s} ")
basket.append(item_name)
item_price = float(input(f"What is the price of {item_name}
$"))
cost.append(item_price)
items_view = input("Would you like to see your entire basket items? ").lower()
if items_view == "yes":
print(basket)
items_cost = input("Would you like to see how much it will cost? ").lower()
if items_cost == "yes":
print(sum(cost))
print("""
*** Welcome to ishop calculator ***
""")
basket=[]
list=[]
items=int(input("How many items do you have in your basket today?: "))
print("Let's go counting them.....")
for x in range(items):
name=input(f"please tell me the name of the item number {x+1}: ")
price=float(input(f"what is the price of {name}
$"))
basket.append(name)
list.append(price)
check=input("Would you like to see your basket's items? (yes/no) ").lower()
if check == "no":
print("Press Enter to exit")
else:
print(basket)
cost=input("Would you like to see how much will it cost? (yes/no) ").lower()
if cost=="no":
print("Press Enter to exit")
else:
print(f"Buying these items will cost you {(sum(list))}$")
اسهل تحدي:
f=[]
g=[]
a=input("Enter your tasks for today separated by commas: ").split(",")
for b in a:
print(f"
{b}
")
c=input(f"Did you finish {b} already? (yes/no): ").lower()
if c=="yes":
print("Nice job")
print("----------")
f.append(b)
elif c=="no":
print("Try not to put it off")
print("----------")
g.append(b)
else:
print("Invalid choice. Please enter yes or no.")
exit()
d=input("Do you want to see your today's progress? (yes/no): ").lower()
if d=="yes":
print(f"progressed tasks: {f}
",f"tasks left:{g} ")
elif d== "no":
print("ok")
else:
print("Invalid choice. Please enter yes or no.")
This's my project but it has many problems,someone can help me?
print("
*******Welcome to the ishop basket*****")
Number = (int(input("How many items in your basket:")))
print("Let's go to counting them....")
for i in range(Number):
name_of_num = input(f"Please tell me the name of the item number {i + 1}:")
price = int(input(f"What's the price of the {name_of_num}:$"))
list_2=[]
list_2.append(price)
the_basket = input("Would you like to see your basket(yes,no):").lower()
if the_basket == "yes":
list=[]
list.append(name_of_num)
print(list)
else:
pass
cost=input("Would you see how much it'll cost?")
if cost=="yes":
print("Buying these items will cost:
",sum(list_2))
print("
*******Welcome to the ishop basket*****")
Number = (int(input("How many items in your basket:")))
print("Let's go to counting them....")
list=[]
list_2=[]
for i in range(Number):
name_of_num = input(f"Please tell me the name of the item number {i + 1}:")
list.append(name_of_num)
price = int(input(f"What's the price of the {name_of_num}:$"))
list_2.append(price)
the_basket = input("Would you like to see your basket(yes,no):").lower()
if the_basket == "yes":
print(list)
else:
pass
cost=input("Would you see how much it'll cost?")
if cost=="yes":
print("Buying these items will cost:
",sum(list_2))
print("welcome to ishop calculator
")
shop=int(input("how many items are there in your basket today?:"))
print ("let's get to counting them....
")
basket=[]
prices=[]
for bask in range(1,shop+1):
chop=input(f"please tell me the name of the item number {bask}:")
price=float(input (f"what is the price of {chop} "))
basket.append(chop)
prices.append(price)
ask=input("wuold you like to see your entire basket items?").lower()
if ask=="yes":
print(basket)
ask_1=input("would you like to see how much it will cost?")
if ask_1=="yes":
print(sum(prices))
print("***Welcome to iShop Calculator ***")
items=int(input("How many items are there in our basket today? "))
basket=[]
prices=[]
print("Lets to counting them...")
for i in range(1,items+1):
item=input(f"Please tell me the name of the item number {i} ")
price=float(input(f"What'is the price of {item}
$"))
prices.append(price)
basket.append(item)
reponse=input("Would you like to see your entire basket items?")
if reponse=="yes":
print(basket)
else:
print()
total=input("Would you like to see how much it'll cost ?")
if total=="yes":
print(f"Buying these items will cost:
{sum(prices)} $")