Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Remove Parts of a String
#2
Hello Dean, I believe you have a couple of options available. You can do:

some_string = "628.6,339,0.30,1.000"
split_string = some_string.split(',')
split_string is now a list of strings:
['628.6', '339', '0.30', '1.000']
So you need the first element of this list:

first_element = split_string[0]
At this point first_element is still a string, but you can convert it to a float and do arithmetics with it.
Reply


Messages In This Thread
Remove Parts of a String - by Dean Stackhouse - Sep-29-2016, 01:41 PM
RE: Remove Parts of a String - by j.crater - Sep-29-2016, 02:25 PM
RE: Remove Parts of a String - by wavic - Sep-29-2016, 03:46 PM
RE: Remove Parts of a String - by Dean Stackhouse - Sep-29-2016, 05:18 PM
RE: Remove Parts of a String - by Kebap - Sep-29-2016, 05:54 PM
RE: Remove Parts of a String - by wavic - Sep-29-2016, 10:07 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  remove gilberishs from a "string" kucingkembar 2 350 Mar-15-2024, 08:51 AM
Last Post: kucingkembar
Smile please help me remove error for string.strip() jamie_01 3 1,284 Oct-14-2022, 07:48 AM
Last Post: Pedroski55
  Remove a space between a string and variable in print sie 5 1,894 Jul-27-2022, 02:36 PM
Last Post: deanhystad
  Matching multiple parts in string fozz 31 6,708 Jun-13-2022, 09:38 AM
Last Post: fozz
  How do I remove spurious "." from a string? Zuhan 7 2,184 Apr-12-2022, 02:06 PM
Last Post: Pedroski55
  How to remove char from string?? ridgerunnersjw 2 2,617 Sep-30-2020, 03:49 PM
Last Post: ridgerunnersjw
  Remove from end of string up to and including some character lbtdne 2 2,398 May-17-2020, 09:24 AM
Last Post: menator01
  Remove escape characters / Unicode characters from string DreamingInsanity 5 14,126 May-15-2020, 01:37 PM
Last Post: snippsat
  Highlight and remove specific string of text itsalmade 5 3,642 Dec-11-2019, 11:58 PM
Last Post: micseydel
  Cannot Remove the Double Quotes on a Certain Word (String) Python BeautifulSoup soothsayerpg 5 7,210 Oct-27-2019, 09:53 AM
Last Post: newbieAuggie2019

Forum Jump:

User Panel Messages

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