Trending Python Discussions

Follow

Ask the Community


Ask any professional question and get answers from other specialists.

Stream language
Justy Shyjin's image
Question added by Justy Shyjin Lead Software Developer TNQ Technologies
22 days ago
Answers:
1
Followers:
Views:
8
Vote Count:
0
Answer should contain a minimum of 25 characters.
Anitha Ragipindi's image
Question added by Anitha Ragipindi Associate PWC
27 days ago

"How can I create a CI/CD pipeline for Python projects using GitHub Actions or other alternatives?"?‎

"I am a Python Developer looking to automate the deployment of my projects. I want to set up a CI/CD pipeline without using Jenkins. Could someone guide me on how to‎ ... See More

Answers:
0
Followers:
Views:
0
Vote Count:
0
Answer should contain a minimum of 25 characters.
Kushmitha  T A's image
Question added by Kushmitha T A
1 month ago
Answers:
0
Followers:
Views:
0
Vote Count:
0
Answer should contain a minimum of 25 characters.
Ibrahim Gashaw Kassa's image  
Answer added by  Ibrahim Gashaw Kassa, Assistant Professor, University of Gondar
4 days ago

In Python, negative indexing is a powerful feature that allows you to access elements within a sequence (like a list, tuple, or string) from the end instead of the beginn ... See More

SREERAJ KRISHNA's image  
Answer added by  SREERAJ KRISHNA, LAB ENGINEER IV/QA LEAD, Western Digital Corporation,
4 days ago

In negetive indexing the last element of the sequence is indexed as -1 and second-to-last element is indexed as -2 and continues until the first element is reached. Negat ... See More

Shivanipriya Pridiviradje's image  
Answer added by  Shivanipriya Pridiviradje, Machine Learning Intern , Atharvo
4 days ago

A negative index in Python allows reverse traversal of a sequence like lists, strings, or tuples. It essentially counts from the end rather than the beginning, where -1 ... See More

Nishabu Hameed K's image  
Answer added by  Nishabu Hameed K, Software Engineer, Verifone
5 days ago

allow you to magically access from end of the list even if you don't know the actual size!

Backend Development's image
Question added by Backend Development
2 years ago

How to find and hire dedicated python backend Developers ?‎

  A Python developer is more than just a Robo writer who writes scalable and effective code. The development of back-end components, integration, testing, and debugging ‎ ... See More

Answers:
1
Followers:
Views:
211
Vote Count:
0
Answer should contain a minimum of 25 characters.
Default profile image  
Answer added by  Md Mahtab Hussain
10 days ago

Negative index  Len(Size)-1  which iterate from last index to first

Wissem  Ben Bettaieb's image  
Answer added by  Wissem Ben Bettaieb, Software Developer, MO-KA
12 days ago

Negative index is indexing from the last of the data structure, for example we do have a list called elements, when we make this return elements[-1], by doing this we are ... See More