Python Forum
Ignoring non characters in a string
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Ignoring non characters in a string
#2
Create the following function near top of program:
def has_digits(word):
    return any(character.isdigit() for character in word)
test:
Output:
>>> has_digits('blinky') False >>> has_digits('bli2nky') True >>> has_digits('123') True >>>
Reply


Messages In This Thread
Ignoring non characters in a string - by evans - Mar-11-2018, 04:33 PM
RE: Ignoring non characters in a string - by Larz60+ - Mar-11-2018, 09:13 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Question [SOLVED] How to replace characters in a string? Winfried 2 948 Sep-04-2024, 01:41 PM
Last Post: Winfried
  doing string split with 2 or more split characters Skaperen 22 6,005 Aug-13-2023, 01:57 AM
Last Post: Skaperen
  How do I check if the first X characters of a string are numbers? FirstBornAlbratross 6 3,019 Apr-12-2023, 10:39 AM
Last Post: jefsummers
  WARNING: Ignoring invalid distribution kucingkembar 1 30,373 Sep-02-2022, 06:49 AM
Last Post: snippsat
Question [SOLVED] Delete specific characters from string lines EnfantNicolas 4 3,179 Oct-21-2021, 11:28 AM
Last Post: EnfantNicolas
  Ignoring errors when using robjects. Rav013 3 4,039 May-04-2021, 09:05 PM
Last Post: Gribouillis
  Extract continuous numeric characters from a string in Python Robotguy 2 3,609 Jan-16-2021, 12:44 AM
Last Post: snippsat
  Python win32api keybd_event: How do I input a string of characters? JaneTan 3 5,053 Oct-19-2020, 04:16 AM
Last Post: deanhystad
  Ignoring a list item hank4eva 2 2,724 Aug-17-2020, 08:40 AM
Last Post: perfringo
  How to get first two characters in a string scratchmyhead 2 3,932 May-19-2020, 11:00 AM
Last Post: scratchmyhead

Forum Jump:

User Panel Messages

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