Python Forum
phrase loop and character comparision
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
phrase loop and character comparision
#7
(Jun-25-2018, 07:59 AM)buran Wrote:
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']

Sorry for my late reply.
Thank you very much buran.
I understand from your quote that we can import the a punctuation package.
I am not familiar yet with 'rstrip' (just 'strip') so I will check it out.
Thank you again.
Shiro
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 shiro26 - Jul-06-2018, 02:03 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  comparision of texts in a file saisankalpj 1 795 Dec-22-2022, 03:11 PM
Last Post: Larz60+
  [solved] unexpected character after line continuation character paul18fr 4 3,450 Jun-22-2021, 03:22 PM
Last Post: deanhystad
  SyntaxError: unexpected character after line continuation character siteshkumar 2 3,207 Jul-13-2020, 07:05 PM
Last Post: snippsat
  loop only prints last character. mcmxl22 1 1,740 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,777 Jan-05-2020, 11:50 AM
Last Post: vivekagrey
  Reverse order of phrase Error ilondire05 4 2,519 Aug-29-2019, 04:19 PM
Last Post: buran
  length constraint on phrase hash to password javaben 0 1,927 Aug-21-2019, 05:34 PM
Last Post: javaben
  Replace changing string including uppercase character with lowercase character silfer 11 6,250 Mar-25-2019, 12:54 PM
Last Post: silfer
  Finding exact phrase in list graham23s 2 2,919 Mar-13-2019, 06:47 PM
Last Post: graham23s
  Probelm using Boolean input phrase.isupper() skrivver99 4 3,141 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