Re: converting numbers into words

2017-11-09 Thread Grant Edwards
On 2017-11-09, r161...@rguktrkv.ac.in wrote: > How can I covert numbers into word like ex:-123 One hundred twenty three? That's one of the classic freshman intro-to-programming homework problems. I remember having to write a Pascal program to do that back in the 70's...

Re: converting numbers into words (Posting On Python-List Prohibited)

2017-11-09 Thread Christopher Reimer
On Nov 9, 2017, at 3:45 AM, John Ladasky wrote: > >> On Wednesday, November 8, 2017 at 11:40:18 PM UTC-8, Lawrence D’Oliveiro >> wrote: >>> On Thursday, November 9, 2017 at 7:51:35 PM UTC+13, r16...@rguktrkv.ac.in >>> wrote: >>> >>> How can I covert numbers into

Re: converting numbers into words

2017-11-09 Thread bartc
On 09/11/2017 06:51, r161...@rguktrkv.ac.in wrote: How can I covert numbers into word like ex:-123 One hundred twenty three? google for something like "algorithm numbers to words". If this is homework, then it's not cheating as everyone else will be doing the same. > How can I covert

Re: converting numbers into words (Posting On Python-List Prohibited)

2017-11-09 Thread John Ladasky
On Wednesday, November 8, 2017 at 11:40:18 PM UTC-8, Lawrence D’Oliveiro wrote: > On Thursday, November 9, 2017 at 7:51:35 PM UTC+13, r16...@rguktrkv.ac.in > wrote: > > > How can I covert numbers into word like ex:-123 One hundred twenty three? > > Here’s

Re: converting numbers into words

2017-11-08 Thread jladasky
On Wednesday, November 8, 2017 at 10:51:35 PM UTC-8, r16...@rguktrkv.ac.in wrote: > How can I covert numbers into word like ex:-123 One hundred twenty three? That's a classic homework exercise. Expect guidance, not an answer. Why don't you solve a related, but simpler task first? This is a

converting numbers into words

2017-11-08 Thread r161637
How can I covert numbers into word like ex:-123 One hundred twenty three? -- https://mail.python.org/mailman/listinfo/python-list

Converting numbers to words

2009-02-05 Thread todp...@hotmail.com
I've been trying to figure this out for over 2 hours and I'm really frustrated right now.I first made Python to ask user to input height in meters. If user puts certain value in meter, then it converts it to feet and inches as follows: Enter the height (in metres): 1.6It is 5 feet, 3 inches

Re: Converting numbers to words

2009-02-05 Thread Steve Holden
todp...@hotmail.com wrote: I've been trying to figure this out for over 2 hours and I'm really frustrated right now. I first made Python to ask user to input height in meters. If user puts certain value in meter, then it converts it to feet and inches as follows: Enter the height (in

Re: Converting numbers to words

2009-02-05 Thread Brian Allen Vanderburg II
todp...@hotmail.com wrote: I've been trying to figure this out for over 2 hours and I'm really frustrated right now. I first made Python to ask user to input height in meters. If user puts certain value in meter, then it converts it to feet and inches as follows: Enter the height