Re: Some Basic questions on the use of CTRL and ALT Keys

2009-11-28 Thread Rhodri James
On Sat, 28 Nov 2009 07:30:00 -, joy99 wrote: On Nov 28, 5:35 am, Steven D'Aprano wrote: As for Alt-combinations, I don't think there is any standard for what they are. I believe that they are operating system specific, and possibly even program specific. It seems the following site

Re: Some Basic questions on the use of CTRL and ALT Keys

2009-11-28 Thread Vlastimil Brom
2009/11/28 joy99 : > On Nov 28, 2:22 pm, Lie Ryan wrote: >> On 11/28/2009 6:20 PM, joy99 wrote: >> >> > I was writing a transliteration program from Bengali to English and >> > vice versa. The program using Unicode chart is giving me perfect >> > outputs in Bengali and vice versa with Bengali inpu

Re: Some Basic questions on the use of CTRL and ALT Keys

2009-11-28 Thread joy99
On Nov 28, 2:22 pm, Lie Ryan wrote: > On 11/28/2009 6:20 PM, joy99 wrote: > > > I was writing a transliteration program from Bengali to English and > > vice versa. The program using Unicode chart is giving me perfect > > outputs in Bengali and vice versa with Bengali input ->  English. > > I wante

Re: Some Basic questions on the use of CTRL and ALT Keys

2009-11-28 Thread Lie Ryan
On 11/28/2009 6:20 PM, joy99 wrote: I was writing a transliteration program from Bengali to English and vice versa. The program using Unicode chart is giving me perfect outputs in Bengali and vice versa with Bengali input -> English. I wanted to add some more power to the key board entry scheme,

Re: Some Basic questions on the use of CTRL and ALT Keys

2009-11-27 Thread joy99
On Nov 28, 5:35 am, Steven D'Aprano wrote: > On Fri, 27 Nov 2009 12:41:42 -0800, joy99 wrote: > > Dear Group, > > > I have written a small and simple program like the following: > > > def alphabet1(n): > >     file_open=open("/python26/alphabetlist1.txt","r") > >     file_read=file_open.read() > >

Re: Some Basic questions on the use of CTRL and ALT Keys

2009-11-27 Thread joy99
On Nov 28, 5:35 am, Steven D'Aprano wrote: > On Fri, 27 Nov 2009 12:41:42 -0800, joy99 wrote: > > Dear Group, > > > I have written a small and simple program like the following: > > > def alphabet1(n): > >     file_open=open("/python26/alphabetlist1.txt","r") > >     file_read=file_open.read() > >

Re: Some Basic questions on the use of CTRL and ALT Keys

2009-11-27 Thread Steven D'Aprano
On Fri, 27 Nov 2009 12:41:42 -0800, joy99 wrote: > Dear Group, > > I have written a small and simple program like the following: > > def alphabet1(n): > file_open=open("/python26/alphabetlist1.txt","r") > file_read=file_open.read() > file_word=file_read.split() > print file_word

Some Basic questions on the use of CTRL and ALT Keys

2009-11-27 Thread joy99
Dear Group, I have written a small and simple program like the following: def alphabet1(n): file_open=open("/python26/alphabetlist1.txt","r") file_read=file_open.read() file_word=file_read.split() print file_word Here, I am using a file “alphabetlist1.txt” which I am reading and