Python Forum
Thread Rating:
  • 2 Vote(s) - 1.5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
desired patterns
#6
Up to 99, you can do it with two lists:
under_twenty = ['', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine', 'ten', 'eleven', ..., 'nineteen']
twenty_up = ['twenty', 'thirty', 'forty', ..., 'ninety']
Then you can use numeric indexing (divided by ten for twenty_up, hint: use //), and only have three cases to worry about: 0, < 20, >= 20.
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply


Messages In This Thread
desired patterns - by nengkya - Apr-15-2017, 05:42 PM
RE: desired patterns - by ichabod801 - Apr-15-2017, 09:16 PM
RE: desired patterns - by nengkya - Apr-15-2017, 09:37 PM
RE: desired patterns - by volcano63 - Apr-15-2017, 09:47 PM
RE: desired patterns - by snippsat - Apr-15-2017, 10:03 PM
RE: desired patterns - by ichabod801 - Apr-15-2017, 10:34 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Regex Include and Exclude patterns in Same Expression starzar 2 822 May-23-2023, 09:12 AM
Last Post: Gribouillis
  The included URLconf 'scribimus.urls' does not appear to have any patterns in it. nengkya 0 1,083 Mar-03-2023, 08:29 PM
Last Post: nengkya
  Json filter is not capturing desired key/element mrapple2020 1 1,164 Nov-24-2022, 09:22 AM
Last Post: ibreeden
  How to remove patterns of characters from text aaander 4 1,160 Nov-19-2022, 03:34 PM
Last Post: snippsat
  how can I display only desired items? 3lnyn0 5 2,100 Dec-25-2021, 06:49 PM
Last Post: menator01
  ERROR: importing desired module mbgamer28 0 1,698 Apr-05-2021, 07:46 PM
Last Post: mbgamer28
  Not rounding to desired decimal places? pprod 2 2,586 Mar-05-2021, 11:11 AM
Last Post: pprod
  Why this code not getting desired output ? MDRI 2 2,563 Sep-18-2020, 02:11 AM
Last Post: MDRI
  Extracting data based on specific patterns in a text file K11 1 2,239 Aug-28-2020, 09:00 AM
Last Post: Gribouillis
  showing only desired part of a plot grknkilicaslan 1 2,368 Jul-10-2020, 03:51 PM
Last Post: Marbelous

Forum Jump:

User Panel Messages

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