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
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
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
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,
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()
> >
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()
> >
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
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