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

تابعنا

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


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

تدفق اللغة
Nancy Nainan's image  
تم إضافة الجواب من قبل  Nancy Nainan, Technical Specialist, Nokia
قبل 22 ساعة

Negative Index to reverse the list or access the list in reverse way. fruit = ['a','p','p','l','e'] print(fruit[-1]) --& ... الإطلاع على المزيد

Poti Jyothi's image  
تم إضافة الجواب من قبل  Poti Jyothi
قبل 2 يومين

Negative indexing is each traversal moves from tail to head, starting with the last element.

Nehmetallah Ghanem's image  
تم إضافة الجواب من قبل  Nehmetallah Ghanem
قبل 3 أيام

Negative Index in python starts counting from the end of the data structure rather than the beginning

Aly  Mtsumi's image  
تم إضافة الجواب من قبل  Aly Mtsumi, Full Stack Sofware Developer, Revolution Analytics
قبل 3 أيام

In python the negative index is used to start slicing from the end of the list, -1 would be the last element in the list.

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

Is there giving any training of project?‎

How to code in Python language of project‎

الإجابات:
0
تابع:
المشاهدات:
3
عدد الأصوات:
0
يجب أن تتألف الإجابة من 25 حرفاً على الأقل.
Komakula  Ramani's image
تم إضافة السؤال من قبل Komakula Ramani
قبل 3 أشهر
الإجابات:
1
تابع:
المشاهدات:
3
عدد الأصوات:
0
يجب أن تتألف الإجابة من 25 حرفاً على الأقل.
Reyad Al-Noubeh's image  
تم إضافة الجواب من قبل  Reyad Al-Noubeh, IT Department Executive Director, Talal Abu Ghazaleh International Group
قبل 8 أيام

Negative indexing in Python provides a convenient way to access elements from the end of a sequence, such as lists, tuples, or strings. When using negative indices, Pytho ... الإطلاع على المزيد

Raza  Ullah's image  
تم إضافة الجواب من قبل  Raza Ullah, Associate Python Developer, International Medical Corps
قبل 10 أيام

In Python negative refers to accessing elements from the end of a sequence such as a list or string. For example my_list = [1,22,32,54,67] my_list[-1] will give 67.my_lis ... الإطلاع على المزيد

komal farooq's image  
تم إضافة الجواب من قبل  komal farooq, Senior Project Manager, Code Creators Inc.
قبل 10 أيام

Negative indexing in Python is like looking at a list or a string from the end instead of the beginning. So, instead of starting from 0, you start counting backwards from ... الإطلاع على المزيد

Default profile image  
تم إضافة الجواب من قبل  Abdi Gezahegn
قبل 18 يوما

negative-indexes, python, index. Hyder_Zaidi November 9, 2022, 5:56pm #1. Negative indexes refer to the positions of elements within an array-like object such as a list, ... الإطلاع على المزيد