Python Forum
phrase loop and character comparision
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
phrase loop and character comparision
#6
from string import punctuation

def find_words(phrase, control):
    phrase = phrase.lower().split()
    words = [word.rstrip(punctuation) for word in phrase if word[0] < control]
    return words
    
my_phrase = "My pet is a Tiger; wild, white and with big eyes. Don't touch him."
     
print(find_words(phrase=my_phrase, control='n'))
['my', 'is', 'a', 'and', 'big', 'eyes', "don't", 'him']
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Messages In This Thread
phrase loop and character comparision - by shiro26 - Jun-25-2018, 06:05 AM
RE: phrase loop and character comparision - by buran - Jun-25-2018, 07:59 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  comparision of texts in a file saisankalpj 1 819 Dec-22-2022, 03:11 PM
Last Post: Larz60+
  [solved] unexpected character after line continuation character paul18fr 4 3,500 Jun-22-2021, 03:22 PM
Last Post: deanhystad
  SyntaxError: unexpected character after line continuation character siteshkumar 2 3,235 Jul-13-2020, 07:05 PM
Last Post: snippsat
  loop only prints last character. mcmxl22 1 1,755 Feb-17-2020, 02:36 AM
Last Post: menator01
  how can i handle "expected a character " type error , when I input no character vivekagrey 2 2,794 Jan-05-2020, 11:50 AM
Last Post: vivekagrey
  Reverse order of phrase Error ilondire05 4 2,541 Aug-29-2019, 04:19 PM
Last Post: buran
  length constraint on phrase hash to password javaben 0 1,941 Aug-21-2019, 05:34 PM
Last Post: javaben
  Replace changing string including uppercase character with lowercase character silfer 11 6,286 Mar-25-2019, 12:54 PM
Last Post: silfer
  Finding exact phrase in list graham23s 2 2,957 Mar-13-2019, 06:47 PM
Last Post: graham23s
  Probelm using Boolean input phrase.isupper() skrivver99 4 3,162 Nov-04-2018, 09:21 AM
Last Post: Larz60+

Forum Jump:

User Panel Messages

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