الحوارات الشائعة في مجتمع Python

تابعنا

اسأل مجتمع المهنيين


اطرح أسئلة مهنية واحصل على أجوبة متميزة من المتخصصين الآخرين.

تدفق اللغة
Default profile image
تم إضافة السؤال من قبل Kushmitha T A
قبل يوم واحد
الإجابات:
0
تابع:
المشاهدات:
0
عدد الأصوات:
0
يجب أن تتألف الإجابة من 25 حرفاً على الأقل.
Default profile image  
تم إضافة الجواب من قبل  Masud Parvez , IT Project Manager, Nordigate AB
قبل 5 أيام

By using negative indices, you can efficiently access elements from the end of a list, tuple, or string, even if you don't know the total number of elements

Default profile image  
تم إضافة الجواب من قبل  Doston Urinbay , Research Intern (Volunteer), Alexander Chervov
قبل 6 أيام

basically reading elements from the end of a list in the backward direction

Amine Benseddiq Benseddiq's image  
تم إضافة الجواب من قبل  Amine Benseddiq Benseddiq, DATA ANALYST INTERN, GAEA21 - SWITZERLAND (REMOTE)
قبل 6 أيام

negative indexing is used in python to start slicing data structures like lists, string or arrays from the end  

Default profile image  
تم إضافة الجواب من قبل  Ali Abuhatab , Planning Engineer & Site Civil Engineer, Bayt Al Handasah Consultative Co.
قبل 20 يوما

n Python, a negative index lets you access elements from the end of a sequence. For example, -1 gives the last element, -2 the second-last, and so on. This is useful for ... الإطلاع على المزيد

Md Faizal undefined's image  
تم إضافة الجواب من قبل  Md Faizal undefined, TECHNICAL SERVICES, NANO COMMUNICATION
قبل 8 أيام

The intake of syntax is reversed

Veluru venkata sai  Vanipriya's image
تم إضافة السؤال من قبل Veluru venkata sai Vanipriya
قبل 10 أشهر

Is there giving any training of project?‎

How to code in Python language of project‎

الإجابات:
0
تابع:
المشاهدات:
3
عدد الأصوات:
0
يجب أن تتألف الإجابة من 25 حرفاً على الأقل.
Ahmed Adel Mohamed Aboshady's image  
تم إضافة الجواب من قبل  Ahmed Adel Mohamed Aboshady, Sr. Document Controller & CRM Specialist – Technical & Commercial Dept., Gila Al Tawakol Electric
قبل 18 يوما

In Python, negative indexing allows you to access elements from the end of a sequence, such as a list, tuple, or string. Instead of counting from the beginning (where the ... الإطلاع على المزيد

Default profile image  
تم إضافة الجواب من قبل  Muzahidul Islam , Digital Marketing Specialist, Dream Educare & Technology
قبل 19 يوما

In Python, a negative index refers to counting elements from the end of a list or sequence. For instance, in a list wren_list = [10, 20, 30, 40, 50], using wren_list[-1] ... الإطلاع على المزيد

Komal Ejaz's image  
تم إضافة الجواب من قبل  Komal Ejaz, Android Development Intern, MedoConnect, MCS Incubation Center
قبل 19 يوما

Accessing elements from an end of a sequence (list, tuple, or array etc.).