Python Forum
string slicing default value
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
string slicing default value
#1
If a slice with positive step like
[::1]
then the default value of starting point and ending point is
[0:len(list):1]
but the default values for negative step like [::-1] is
[len(list)-1:None:-1]
Is that right ? Correct me if i'm wrong please, and are there some mechanisms explain why python can switch between default values like that ? Thank you guys so much
Reply
#2
Simple answer about difference: 0 and -0 are equal. So counting from end can’t start with -0 and starts with -1. This makes all subsequent indexes different from zero-based indexing used in forward direction.

EDIT: there is subtle distinction between 0 and None:

>>> s = 'python'
>>> s[0:0]
''
>>> s[None:None]
'python'
>>> s[:]           # same as [None:None]
'python'
You can omit start and stop indices, Python interprets these omissions as None (or in spoken language: 'from start', 'till end').

Some rules of thumb:

sequence[start:stop:step]

- sequence is object to be sliced
- start, stop, step are indices
- start index is included in slice, end index is first not included
- start, stop and step are separated by :
- to define stop and/or step previous indices must be defined
- if value omitted Python interprets it as None ([2:] to end; [:2] from start) which is different from 0 (specific index)
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Python3 string slicing Luchano55 4 610 Feb-17-2024, 09:40 AM
Last Post: Pedroski55
  Am I wrong or is Udemy wrong? String Slicing! Mavoz 3 2,565 Nov-05-2022, 11:33 AM
Last Post: Mavoz
  String slicing and loop iteration divyansh 9 4,743 Jun-07-2020, 10:29 PM
Last Post: divyansh
  String slicing divyansh 6 3,366 May-31-2020, 06:15 AM
Last Post: pyzyx3qwerty
  string slicing help oli_action 2 2,195 Mar-22-2020, 09:57 AM
Last Post: oli_action
  Accepting strings as arguments when slicing a string? (Ziyad Yehia on Udemy) Drone4four 4 3,793 Aug-23-2019, 07:59 PM
Last Post: Drone4four
  string slicing Uchikago 2 2,399 Jun-28-2019, 06:35 AM
Last Post: perfringo
  String slicing in python from reverse ift38375 1 2,410 Apr-29-2019, 06:58 AM
Last Post: perfringo
  String Slicing in List Comphrensions Patroclus72790 1 2,264 Mar-21-2019, 09:33 PM
Last Post: nilamo
  String slicing problem Ollew 4 2,807 Sep-08-2018, 08:07 PM
Last Post: Ollew

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020