Skip to content

Tag: string

Check a list contains given elements

I want to check if my list’s first four elements are digits. what i did is as follows: But this gives the following error. How can I achieve this? Answer The error is telling you that you can’t do some_list in some_string – after all, a list consists of characters, not lists, so it’s p…

regex whole string match between numbers

I want to extract a whole word from a sentence. Thanks to this answer, I can get whole words in cases like: where symbols next to the word don’t bother. However if there’s a number it doesn’t find the word. How should I modify the expression to match cases where there’s a number next t…

Formatting a list of sentences extracted from text

I am trying to format a list neatly that I have extracted using regex. I would like to have each sentence in its own line and remove the n characters: Image of current output: Answer From OP’s image, text_1 is a list of strings. To remove the newline n characters from a string, you can use the string&#8…

Using Split method or Regex to separate string

In my project I am webscrapping UFC website to gather to the total wins, total losses, and total draws of each UFC athlete. This is part of my code, as I wish to strip the total wins, total losses, and total draws separately: The result is the following: The problem is, I am unable to spew out the total draws…

Str.format with a list to create filter

Somewhat simple question with many similar ones out there, but I cannot seem to find what I am looking for. I am trying to filter a list of images in a dbc.Carousel via an int list of location numbers. Any image title that starts with a given number will correlate to a location. So, initially, I would want al…

Can i shuffle a string in python?

I created a password generator program and I have gotten the random letters, numbers, and symbols in quantities decided by the input. I can’t seem to figure out how to shuffle the password, though. i can generate a random password eg adu145′!@ but i would like to scramble all the characters as wel…