أحبائنا في أكتو كود, تجدون مجموعة أكبر بكثير من الفيديوهات على التطبيق مقارنة بما هو متوفر على يوتيوب. نشجعكم على تحميل التطبيق المجاني للإستفادة الكاملة ولا تنتظروا حتى نقوم برفع المزيد على يوتيوب. يمكنك تخطي اي عدد دروس تحب من خلال التطبيق أيضا حمل اكتو كود على ايفون من هنا: apps.apple.com/us/app/octucode/id6449018676 وعلى أندرويد من هنا: play.google.com/store/apps/details?id=com.base.octucode
Full_name = input("Enter the first name and the last name of your friends sprated by comma ").split(", ") for friend in Full_name: new_friend = friend.split() print(new_friend) print("Abbreviated Names: ") for friend in Full_name: new_friend = friend.split() print(f"{new_friend[0][0]}.{new_friend[0][1]}.") بدون استخدام join هل الحل صحيح
انت يا استاذ ابراهيم قولت في الحلقه الي فاتت ان احنا في المشروع الاول ان احنا هنحتاج join,slice وانت في الحل مستخدمتش اي وحده منهم واغلب الناس كانت وهمه بيحلوا وانا شخص منهم بنحل بستخدام join , slice ودا سبب ان الكل دماغه انفجرت من التفكير ومحدش وصل لحل وحاجه كمان شرح مفصل وحلوا مشاء الله
انا قعدت ساعتين اعمل فى كود جدا معقد بس اشتغل نفس الحاجة و بعد ما شفت الحل اتصدمت 😂 names = input("Enter the first and last name of your friends separated by a comma : ").split(", ") splitted = [] Abbreviated_names = [] for name in names : x = name.split() splitted.append(x) y = len(splitted) Abbreviated_names.append(splitted[y-1][0][0].upper()+"."+splitted[y-1][1][0].upper()+".") print("Abbreviated names : ") for x in Abbreviated_names : print(x) فكرت فى الكود دا اكتر من ساعتين و حسيت انى عملت انجاز
First_sentence =input("the first sentence :").split() L=len(first_sentence) h=[ ] for l in range(L) h.append(first_sentence[-1-L]) Print("reverse_sentence :", " ",join(h)
first project in only 10 lines: inp = input("Enter first and last name separated by coma : ") list_names = inp.split(", ") list = [] for i in list_names: names = i.split(" ") print(names) list.append(names) print("Abbreviated Names : ") for i in list : print(f"{i[0][0]}.{i[1][0]}.")
حل التحدي الاول بعد ما شوفت حل حضرتك بدون استخدام append: names=input("enter the names: ").split(", ") for x in names: name_part=x.split() print(name_part) first_name=name_part[0] second_name=name_part[1] f_name=first_name[0] s_name=second_name[0]
print(f"here is the first letter of the names:{f_name}.{s_name}.")
اقول لك ما علمنا نبينا قال رسول الله من صنع لهُ معروف فقال لصاحبه جزاك الله خيراً، فقد أبْلَغ في الثناء» قال عمر بن الخطاب رَضِعَ اللَّهُ عَنْهُ : لو يعلمُ أحدكم ما لَهُ في قوله لأخيه: لأكثر منها بَعضُكُم لِبَعْض )) جزاك الله خيراً ؛ مجالس الذكر صحيح الجامع » (708) / مصنف ابن أبي شيبة » 436/1)
separator = " " sentence = input("Type a sentence:
").split() pure_words = separator.join(sentence) print(f" This is the sentence without punctuations:
{pure_words}") print("_________________________________") reversed_words = sentence[::-1] pure_reversed_sentence = separator.join(reversed_words) print(f" This is the reversed sentence Without punctuations:
استخدم حل اخر sentence.reverse() sentence = input("Enter a sentence ") list = sentence.split() list.reverse() reverse_sentence = (" ".join(list)) print(f"Revers sentence: {reverse_sentence}")
names=input("Enter the first and last name of your friends separated by a comma: ").split(", ") list_names=[] for name in range(0,len(names)): str_name=names[name] names_part=str_name.split() print(names_part) names_part.append(list_names) print("Abbreviated names:" ) for Y in range(0,len(names)): str_name=names[Y] names_part=str_name.split() print(F".{names_part[0][0]}.{names_part[1][0]}")
names=input("Enter the first and last name of your friends separated by a comma: ").split(", ") list_names=[] for name in range(0,len(names)): str_name=names[name] names_part=str_name.split() list_names.append(names_part) print(list_names[name]) print("Abbreviated names:" ) for y in list_names: print(f".{y[0][0]}.{y[1][0]}")
names_list = input("Enter the first and last name of your friends separated by comma :").split(", ") letters = [] for n in range(len(names_list)): full_name = names_list[n].split(" ") letters.append(f"{full_name[0][0]}.{full_name[1][0]}.") print(full_name) print("Abbreviated Names:") print(" ".join(letters))
names=input("give me your friends first name and the last name:").split(", ") first_letter=[] for p in names: parts=p.split() print(parts) first_letter.append(parts) for a in first_letter: print(a[0][0]+"."+a[1][0]+".")
names=input("enter names separated by a comma ").split(", ") names1=[] a=len(names) for i in range (len(names)): names1.append(names[i].split(" ")) print(names[i]) for i in range (len(names)): print(f"{names[i][0][0].capitalize()}.{names[i][1][0].capitalize()}.")
names=input("Enter the first and last name of your friends separated by a comma: ").split(",") for x in names: name=x.split(" ") print(name) print("abbreviated name:") for x in names: name=x.split(" ") print(name[0][0]+"."+name[1][0]) حل المشروع الاول بطريقة مختصرة وادت الى نفس النتيجة
هل الحلول بتعتى فيها مشكلة كدا؟ names=input("enter the names ").split(", ") for name in names: spltname=name.split() print(spltname) print(f"abrevated name: {spltname[0][0]}.{spltname[1][0]}.") الحل التانى:: scentence=input("enter the scentence ").split(" ") print(" ".join(scentence[::-1]))
names=input(" inter the name and family with comma :- > ") name=(names).split(" , ") for x in name: names1=(x).split(" ") print (names1) for n in name: names2=(n).split(" ") print ((names2[0][0]+"."+names2[1][0]).upper())
تروح عند البحث وتكتب الشي الي أنت تبيه والأفضل إذا تبي نتائج افضل انك اكتب الانجليزية مثلا أنت تبي تعرف كيف تعكس الكلمه في بايثون اكتب how to reverse a word in Payson وبس اتمنى انك فهمت
حليت المشروع الاول بالطريقة دي names=input("enter the first and last name of your friends separated by comma: ") names_list=names.split(",") every_list = [] for name in names_list: split_names = name.strip().split() every_list.append(split_names) for list in every_list: print(list) for name in every_list: print(f"{name[0][0]} + {name[1][0]}")
nm=input("Enter the first and rhe last name of your friends separated by a comma: ").split(", ") abbreviation=[] for names in nm: na=names.split() print (na) first_ab=na[0][0] second_ab=na[1][0] abb=first_ab+"."+second_ab+"." abbreviation.append(abb) print("abbreviation name is:") for x in abbreviation: print(x) ما يطلع نفس الرسلت😢
names = input("Enter the first and last name of your friends separated by a comma: ").split(", ") a_n = [] for name in names: name_parts = name.split( ) print(name_parts) a_n.append(name_parts) print(" Abbreviated names: ") for name in a_n: r = name[0][0] + name[1][0] + " " print(".".join(r))
مشروعي بكل بساطة .names=input("Enter the first and the last name of your frinds by comma:").split(", ") nams_separator=(" ".join(names)) AAin_list=(nams_separator.split(" ")) length=len(AAin_list) nu=0 for x in range(0,length,2): print(AAin_list[x:x+2]) print("shortly") for z in range(0,length,2): print(AAin_list[z][0],".",AAin_list[z+1][0],".")
name=input("Enter the first and last name of your friends separated by a comma: ").split(', ') for n in name: name_parts=n.split() print(name_parts) print(name_parts[0][0].upper(),name_parts[1][0].upper())
List = ["Adel", "Bandint", "Law", "Yan", "Salah"] Names = input("Enter First And Last Name Of Your Friends Separated By A Comma: ").split(", ") for X in Names: print(X.split()) print() print("Abbreviated Names:") for Y in range(len(Names)): print(f"{Names[Y][0]}.{List[Y][0]}.")
names = input ('pls enter you friends name seprated by comma: ').split(',') list=[] for i in names: list.append(i.split(' ')) for x in list: print(x) print('abbreviated names:') for x in list: print(f'{x[0][0].upper()}.{x[1][0].upper()}.')
the_names =input('enter the first name and the last name ').split(',') whole_name = [] for name in the_names: name_split = name.split() print(name_split) fist_name = name_split[0] second_name = name_split[1] first_name_litter = fist_name[0].upper() second_name_litter = second_name[0].upper() tow_letters = first_name_litter + second_name_litter whole_name.append(tow_letters) print('Abberviated Name:') for y in whole_name: fc = y[0] sc = y[1] print(f'-{fc} . {sc}')
names = input ('Enter the first and last name of you friends separated by a comma: ').split(', ') m = [] for i in names: m.append(i.split(' ')) print(i.split(' ')) print ('Abbrevaited Names: ') for g in m: print(g[0][0],'.',g[1][0],'.')
أحبائنا في أكتو كود, تجدون مجموعة أكبر بكثير من الفيديوهات على التطبيق مقارنة بما هو متوفر على يوتيوب. نشجعكم على تحميل التطبيق المجاني للإستفادة الكاملة ولا تنتظروا حتى نقوم برفع المزيد على يوتيوب. يمكنك تخطي اي عدد دروس تحب من خلال التطبيق أيضا
حمل اكتو كود على ايفون من هنا:
apps.apple.com/us/app/octucode/id6449018676
وعلى أندرويد من هنا:
play.google.com/store/apps/details?id=com.base.octucode
Full_name = input("Enter the first name and the last name of your friends sprated by comma ").split(", ")
for friend in Full_name:
new_friend = friend.split()
print(new_friend)
print("Abbreviated Names: ")
for friend in Full_name:
new_friend = friend.split()
print(f"{new_friend[0][0]}.{new_friend[0][1]}.")
بدون استخدام join
هل الحل صحيح
@@ahmedkoko1672 excellent and without complication
اول اختبار لم اوفق فيه .دون ان انهاء وها انا اراجعه
و الله انا كمان بس الحمد لله على كل حال ان شاء الله خير
قكرت بس انا فكتابت واضربت يوم عن الحل .
وانا كمان كان اختبار يلخبط شويه بس سعيده اني اخيرا فهمت الحل بعد عصر مخي عالفاضي 😂شكرا يا مستر ابراهيم 😊
استاذ ابراهيم السلام عليكم ورحمة الله وبركاته
سؤالي عن متى نقوم بتحميل بيئة العمل على الاجهزة؟
المشروع الثاني ب اختصارthe_santance=input('eanter a sentence')
words=the_santance.split()
print(words[-1::-1])
المشروع الأول اخذت فيه اسبوع عشان احله والثاني عشر دقائق 😂
ما اقدر اصبر أسبوع سرقت النظر على الحل وسويته مختصر أفضل من ذا
تمرين الثاني حليتو كدا
sentence = input ("Write a useful sentence :
")
names_star = []
names_star = sentence.split(" ")
names_star.reverse()
print(" ".join(names_star))
لكن هنا انت عكست الsentense من الافضل تخليها زي ما هيا و تسوي list جديدة لانو لو كان الكود معقد ممكن تحتاج الsentense الغير معكوسه
انت يا استاذ ابراهيم قولت في الحلقه الي فاتت ان احنا في المشروع الاول ان احنا هنحتاج join,slice وانت في الحل مستخدمتش اي وحده منهم واغلب الناس كانت وهمه بيحلوا وانا شخص منهم بنحل بستخدام join , slice ودا سبب ان الكل دماغه انفجرت من التفكير ومحدش وصل لحل
وحاجه كمان شرح مفصل وحلوا مشاء الله
هو فعلا ماستخدمش join بس استخدم slice لما فصل اول واخر كلمه ورجع عمل تشريح تاني لاول حرف من كل كلمه
ماشاء الله أستاذ إبراهيم
الشرح ممتاز جداً
لك كل الشكر
yes
احنا بنفهم بحزافير الحزافير شكرا مستر إبراهيم❤❤
الذي بحث ولقى Method اخرى وهي reversed وزبطة معاه يبين نفسه
ايوه انا حالت كده بردو
(d منغير) .reverse ()
كيف ابحث و فين
ياريت حد يقولي 😢
صلوا على النبي ❤
شكرا ليك استاذ ابراهيم❤ بالجد استاذ عظيم
جزاك الله خير الجزاء ورحم والديك وحفظك من كل سوء ❤❤❤
انا ماحليت التحدي اجاني صعب جدا رغم المحاولة
😢
انا كمان
وانا🥺
شكرا جزيلا لك وبارك الله فيك ❤❤❤
السلام عليكم بشمهندس ابراهيم
اتمني من حضرتك توضيح جدول بالوحدات المتبقيه
وبارك الله في حضرتك علي الشرح المتتاز
الترتيب القادم موجود في الابلكيشن
شباب انا ليش لما اعمل run بالريبلت ما يحذف الكلام بالمرة السابقة
وانا برضه عندي نفس المشكلة
تعرف الحل ايه؟
لازم اول ما تكتب ال انت عايزه تدوس على stop و بعدين تدوس على سلة المحذوفات ال جنب ال console و هتتحذف معاك
هل يوجد طريقة اخرة
اعتقد لا@@fadidakhan5992
هو انا لو معرفتش احل اى مشروع بعد تفكييييير هل كده فيه مشكلة عندى فى التفكير البرمجى ولا لسه بنتعلم؟؟؟ كل الحب كل الشكر والتقدير يا مستر💚💚
نفس مشكلتي والله 😢😢
نفس المشكلة بس عادي الاستاذ قال شيئ طبيعي لأنو لستنا نتعلم و نتكون
دا حالي واللهي انا كنت لسه هسال نفس السوال
وانا نفس شي بقيت يومين افكر و اجرب لم اصل للحل .بس هذ شي عادي . ليوم نحاول بكرا انجح
@@AmiraTop-eh2br والله*
الله يوفقك ، طريقة شرح رائعة👏
بسم الله توكلنا
مبدع الله يبارك فيك
It's a very awesome episode ❤❤
انا قعدت ساعتين اعمل فى كود جدا معقد بس اشتغل نفس الحاجة و بعد ما شفت الحل اتصدمت
😂
names = input("Enter the first and last name of your friends separated by a comma :
").split(", ")
splitted = []
Abbreviated_names = []
for name in names :
x = name.split()
splitted.append(x)
y = len(splitted)
Abbreviated_names.append(splitted[y-1][0][0].upper()+"."+splitted[y-1][1][0].upper()+".")
print("Abbreviated names : ")
for x in Abbreviated_names :
print(x)
فكرت فى الكود دا اكتر من ساعتين و حسيت انى عملت انجاز
شكرا جزيلا استاذنا الكريم بارك الله فيكم
جزاك الله خير ان شاء الله ❤
طريقة اخرى
sentence = input("Enter a sentence: ").split()
sentence.reverse()
print(" ".join(sentence))
المشروع الثاني ب 3 سطور فقط
sentence = input("enter a sentence: ")
words = sentence.split()
print(" ".join(words[::-1]))
استاذ عادل انا اثناء البحث طلع معي الدالة الي اسمها .reverse() وحليت المشروع عن طريقها في شي مشكلة
ربنا يبارك فيك يارب ويوفقك
دعوه لمن احببتم ولى ❤
لما تكون في الوحدة الجديدة لكنك تحضر حلقة اليوتيب ايضا من اجل ان تدعم استاذنا الفضيل شكرا لك من كل القلب
انا حليت مشروع ثاني بطريقة اخرة استعملت فاكشن ()revesed هل يعني طريقتي صح؟؟؟
يا شباب نصيحة
اذا انتو عل لابتوب استعملو شتوديو
و اذا عل هاتف pydroid3 لونها ازرق
جزاك الله خيرا
ده عباره عن اي الشتوديو ؟؟
First_sentence =input("the first sentence :").split()
L=len(first_sentence)
h=[ ]
for l in range(L)
h.append(first_sentence[-1-L])
Print("reverse_sentence :", " ",join(h)
جزاك الله خيرا
first project in only 10 lines:
inp = input("Enter first and last name separated by coma : ")
list_names = inp.split(", ")
list = []
for i in list_names:
names = i.split(" ")
print(names)
list.append(names)
print("Abbreviated Names : ")
for i in list :
print(f"{i[0][0]}.{i[1][0]}.")
how many hours it takes you
حل التحدي الاول بعد ما شوفت حل حضرتك بدون استخدام append:
names=input("enter the names: ").split(", ")
for x in names:
name_part=x.split()
print(name_part)
first_name=name_part[0]
second_name=name_part[1]
f_name=first_name[0]
s_name=second_name[0]
print(f"here is the first letter of the names:{f_name}.{s_name}.")
وهي reverse زعلتنا في حاجه اللي جابها باستخدام reverse احب اقولك انت جامد يسطا واللي جابها باستخدام طريقه مستر ابراهيم فانت اجمد
لم أجد حلقة ولع النور للاسبوعين الماضيين. في أي قناة ؟؟؟؟
اقول لك ما علمنا نبينا قال رسول الله
من صنع لهُ معروف فقال لصاحبه
جزاك الله خيراً، فقد أبْلَغ في الثناء»
قال عمر بن الخطاب رَضِعَ اللَّهُ عَنْهُ : لو يعلمُ أحدكم ما لَهُ في قوله لأخيه: لأكثر منها بَعضُكُم لِبَعْض ))
جزاك الله خيراً ؛
مجالس الذكر
صحيح الجامع » (708) / مصنف ابن أبي شيبة » 436/1)
separator = " "
sentence = input("Type a sentence:
").split()
pure_words = separator.join(sentence)
print(f"
This is the sentence without punctuations:
{pure_words}")
print("_________________________________")
reversed_words = sentence[::-1]
pure_reversed_sentence = separator.join(reversed_words)
print(f"
This is the reversed sentence Without punctuations:
{pure_reversed_sentence}")
استخدم حل اخر sentence.reverse()
sentence = input("Enter a sentence
")
list = sentence.split()
list.reverse()
reverse_sentence = (" ".join(list))
print(f"Revers sentence: {reverse_sentence}")
هو المشاريع الي ينطينا هم صعبين مرة❤
أستاذنا الفاضل لقد نسيت اللغة الانجليزية تماما وأصبح كل إهتمامك هنا 💔
نتمنى الاهتمام أكثر بالإنجليزي فهو لا يقل أهمية عن البرمجة
صلو على الحبيب
sentence = input('enter sentence: ').split()
rev = sentence[::-1]
verse = ' '.join(rev)
print(verse)
بسم الله ماشاء الله لا حول ولا قوة الا بالله الله اكبر
انا عملت المشروع الاول بطريقتين هحطهم في الرد شكرا مستر ابراهيم على كل القنوات ❤❤❤❤❤❤ الحل متاخر بس ان تاتي متاخرا خيرا من الا تاتي😅😅
names=input("Enter the first and last name of your friends separated by a comma: ").split(", ")
list_names=[]
for name in range(0,len(names)):
str_name=names[name]
names_part=str_name.split()
print(names_part)
names_part.append(list_names)
print("Abbreviated names:" )
for Y in range(0,len(names)):
str_name=names[Y]
names_part=str_name.split()
print(F".{names_part[0][0]}.{names_part[1][0]}")
names=input("Enter the first and last name of your friends separated by a comma: ").split(", ")
list_names=[]
for name in range(0,len(names)):
str_name=names[name]
names_part=str_name.split()
list_names.append(names_part)
print(list_names[name])
print("Abbreviated names:" )
for y in list_names:
print(f".{y[0][0]}.{y[1][0]}")
استاااذذذذذذ ورئيسسس قسممم
sentence = input("Enter a sentence : ").split(" ")
the_print = "Reversed sentence : "
print(the_print," ".join(sentence[-1:-100000:-1]) )
انا حليته بالطريقه دي هل عندي مشكله في قابلية الكود للقراءه
names_list = input("Enter the first and last name of your friends separated by comma :").split(", ")
letters = []
for n in range(len(names_list)):
full_name = names_list[n].split(" ")
letters.append(f"{full_name[0][0]}.{full_name[1][0]}.")
print(full_name)
print("Abbreviated Names:")
print("
".join(letters))
عملتها بس بغير طريقة، في المشروع الثاني استعملت reversed.
لو سمحت، انا أنهيت الدرس الأول في القسم التالت من الكورس، و بعدين ما عم اقدر فك قفل الدرس التاني
شباب كيف بدنا نبحث يلي بيعرف يعلمنا
وفقك الله
names = input("enter names :").split(",")
abbreviation = []
print("show all names:")
for i in names:
name = i.split()
print(name)
first_initial = name[0][0]
last_initial = name[1][0]
shortName = first_initial + "." + last_initial + "."
abbreviation.append(shortName)
print("Abbreviation names:")
for x in abbreviation:
print(x)
names=input("give me your friends first name and the last name:").split(", ")
first_letter=[]
for p in names:
parts=p.split()
print(parts)
first_letter.append(parts)
for a in first_letter:
print(a[0][0]+"."+a[1][0]+".")
names=input("enter names separated by a comma ").split(", ")
names1=[]
a=len(names)
for i in range (len(names)):
names1.append(names[i].split(" "))
print(names[i])
for i in range (len(names)):
print(f"{names[i][0][0].capitalize()}.{names[i][1][0].capitalize()}.")
ممكن احد يقول لنا أين نبحث عن معلومات عن المشروع الثاني؟
السلام عليكم ورحمة الله وبركاته كيف حالك ❤
names=input("Enter the first and last name of your friends separated by a comma:
").split(",")
for x in names:
name=x.split(" ")
print(name)
print("abbreviated name:")
for x in names:
name=x.split(" ")
print(name[0][0]+"."+name[1][0])
حل المشروع الاول بطريقة مختصرة وادت الى نفس النتيجة
هو الكورس هيخلص امتي
تمرين ثاني سويتي فسطرين
sentence=input("Enter a sentence: ").split(" ")
inversed_sentence=reversed(sentence)
print(" ".join(inversed_sentence))
انا بحتت و كتبت الكود هيك
هل الحلول بتعتى فيها مشكلة كدا؟
names=input("enter the names
").split(", ")
for name in names:
spltname=name.split()
print(spltname)
print(f"abrevated name: {spltname[0][0]}.{spltname[1][0]}.")
الحل التانى::
scentence=input("enter the scentence
").split(" ")
print(" ".join(scentence[::-1]))
استمر❤
une autre méthode
sentence = input("Enter a sentence:"). split()
reverseds=[]
for i in sentence :
reverseds.insert(0,i)
print("". join(reverseds)
في حاجة غربية في الابلكيشن يعني المفروض اني اشترك عشان اتفرج علي حلقات اكتر وكل حلقة مبتزيدش عن ربع ساعة وانا عايز اكتر ياريت دا يتغير
اول كور ما زبط معا بس الثاني اي
sentence = input("Enter a sentence: ")
words = sentence.split()
print(" ".join(reversed(words)))
)
names=input(" inter the name and family with comma :- > ")
name=(names).split(" , ")
for x in name:
names1=(x).split(" ")
print (names1)
for n in name:
names2=(n).split(" ")
print ((names2[0][0]+"."+names2[1][0]).upper())
اول تحدي تم في 5 سطور 😊😊
انا سطرين❤😂
ازاي اعمل ملف على الموبايل ...
انا حليت اول مسألة بحاجة مشابهة للطريقة ازاي اختبر كفائتها؟
لامشروع التاني ده كتبتهفي ٣سطور بس
يا ابراهيم لي مابترودش علي التعليقات
comment je fais command + / dans le premier projet ?
ليش ماستخدم += وضيف اول حرفين على بعض
مستر ابراهيم طيب انت ما علمتنا كيف بدنا نبحث شو لازم نكتب و شلون !!!!!!!!!!
ما فهمت قصدك
@@op-ms8uo قصدي كيف نبحث ع Google من اجل الأكواد
تروح عند البحث وتكتب الشي الي أنت تبيه والأفضل إذا تبي نتائج افضل انك اكتب الانجليزية مثلا أنت تبي تعرف كيف تعكس الكلمه في بايثون اكتب how to reverse a word in Payson وبس اتمنى انك فهمت
حليت المشروع الاول بالطريقة دي
names=input("enter the first and last name of your friends separated by comma: ")
names_list=names.split(",")
every_list = []
for name in names_list:
split_names = name.strip().split()
every_list.append(split_names)
for list in every_list:
print(list)
for name in every_list:
print(f"{name[0][0]} + {name[1][0]}")
في انتضار js
تحصلت على نفس النتيجة لكن طريقتي كانت مختلفة عن الي عملت بيها
يا جماعة بدي مساعدة كيف اخلي الكونسول يمسح محتواه كل ما اشغل الكود
متى ستنتهي هده اللغه ؟؟؟
لا تنتهي
عملتو بتلفيون جنني بعمل مسافة مابيحب يعمل مسافة شو بدي أسوي 😡😡😡
مرحبا
nm=input("Enter the first and rhe last name of your friends separated by a comma:
").split(", ")
abbreviation=[]
for names in nm:
na=names.split()
print (na)
first_ab=na[0][0]
second_ab=na[1][0]
abb=first_ab+"."+second_ab+"."
abbreviation.append(abb)
print("abbreviation name is:")
for x in abbreviation:
print(x)
ما يطلع نفس الرسلت😢
بصراحة المشروع الاول حليته بعشر سطور بس معملتش كل المتغيرات دي حسيبو ف اول رد
names = input("Enter the first and last name of your friends separated by a comma: ").split(", ")
a_n = []
for name in names:
name_parts = name.split( )
print(name_parts)
a_n.append(name_parts)
print("
Abbreviated names:
")
for name in a_n:
r = name[0][0] + name[1][0] + " "
print(".".join(r))
❤❤❤❤❤❤
حلقة كلمة السر لم ارى التمرين ..
sentence = input("Would enter the sentence you wanna inverse
").split(" ")
j = len(sentence)
sublist=[]
while j > 0:
sublist.append(sentence[j-1])
j -= 1
print(sublist)
print(" ".join(sublist))
👍🏻
💖👆💖🎓🎓🎓👉👆👈
مشروعي بكل بساطة .names=input("Enter the first and the last name of your frinds by comma:").split(", ")
nams_separator=(" ".join(names))
AAin_list=(nams_separator.split(" "))
length=len(AAin_list)
nu=0
for x in range(0,length,2):
print(AAin_list[x:x+2])
print("shortly")
for z in range(0,length,2):
print(AAin_list[z][0],".",AAin_list[z+1][0],".")
sent = input("Enter a sentence: ").split()
sent.reverse()
re = " ".join(sent)
print(re)
name=input("Enter the first and last name of your friends separated by a comma: ").split(', ')
for n in name:
name_parts=n.split()
print(name_parts)
print(name_parts[0][0].upper(),name_parts[1][0].upper())
List = ["Adel", "Bandint", "Law", "Yan", "Salah"]
Names = input("Enter First And Last Name Of Your Friends Separated By A Comma:
").split(", ")
for X in Names:
print(X.split())
print()
print("Abbreviated Names:")
for Y in range(len(Names)):
print(f"{Names[Y][0]}.{List[Y][0]}.")
names = input ('pls enter you friends name seprated by comma: ').split(',')
list=[]
for i in names:
list.append(i.split(' '))
for x in list:
print(x)
print('abbreviated names:')
for x in list:
print(f'{x[0][0].upper()}.{x[1][0].upper()}.')
the_names =input('enter the first name and the last name
').split(',')
whole_name = []
for name in the_names:
name_split = name.split()
print(name_split)
fist_name = name_split[0]
second_name = name_split[1]
first_name_litter = fist_name[0].upper()
second_name_litter = second_name[0].upper()
tow_letters = first_name_litter + second_name_litter
whole_name.append(tow_letters)
print('Abberviated Name:')
for y in whole_name:
fc = y[0]
sc = y[1]
print(f'-{fc} . {sc}')
names = input ('Enter the first and last name of you friends separated by a comma: ').split(', ')
m = []
for i in names:
m.append(i.split(' '))
print(i.split(' '))
print ('Abbrevaited Names: ')
for g in m:
print(g[0][0],'.',g[1][0],'.')
❤❤❤❤❤❤❤❤