Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
String slicing problem
#1
Hi, can someone please help me understand why this code doesn't work?

data = 'XBOX 360 | 150 | NEW'

product = data[data.index('1'):data.index('|')]
product
''
product = data[data.index('1'):data.index('N')]
product
'150 | '
As you can see it works when I index 'N' but not the '|'
Reply


Messages In This Thread
String slicing problem - by Ollew - Sep-08-2018, 07:31 PM
RE: String slicing problem - by buran - Sep-08-2018, 07:35 PM
RE: String slicing problem - by Ollew - Sep-08-2018, 07:42 PM
RE: String slicing problem - by buran - Sep-08-2018, 07:50 PM
RE: String slicing problem - by Ollew - Sep-08-2018, 08:07 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Python3 string slicing Luchano55 4 608 Feb-17-2024, 09:40 AM
Last Post: Pedroski55
  Am I wrong or is Udemy wrong? String Slicing! Mavoz 3 2,553 Nov-05-2022, 11:33 AM
Last Post: Mavoz
  Convert string to float problem vasik006 8 3,400 Jun-03-2022, 06:41 PM
Last Post: deanhystad
  f string concatenation problem growSeb 3 2,255 Jun-28-2021, 05:00 AM
Last Post: buran
Question Problem with string and \n Falassion 6 2,685 Jun-15-2021, 03:59 PM
Last Post: Falassion
  how to deal with problem of converting string to int usthbstar 1 1,973 Jan-05-2021, 01:33 PM
Last Post: perfringo
  string problem Mathisdlg 6 2,854 Aug-05-2020, 09:31 AM
Last Post: Mathisdlg
  String slicing and loop iteration divyansh 9 4,727 Jun-07-2020, 10:29 PM
Last Post: divyansh
  String slicing divyansh 6 3,362 May-31-2020, 06:15 AM
Last Post: pyzyx3qwerty
  sequence slicing problem qliu 4 2,159 Apr-27-2020, 09:50 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

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