On Tuesday, September 22, 2015 at 2:20:56 AM UTC-5, Bala Ji wrote:
> Hello,
> This is my programe : on mac i was able to output ps file but i didn't
> got the pdf file :/
>
> # -*- coding: utf-8 -*-
> # script lecture_gif.py
> from Tkinter import *
> import tkMessageBox
> import Tkconstants
> impo
Hi,
I am Mithra. Me and my friends joined together ti help the
orphanage people after visiting their home once. There are nearly 100
students interested in studies but they dont have enough fund to be
provided for their studies. Please help them by donating as much as
you can. Thanks for
> Er, I don't think you thought that one entirely through (/ tried it out):
>
>
My Apologies.
Here is a working one.
>>> x="123"
>>> t = list(x)
>>> t.reverse()
>>> print ''.join(t)
321
But of course, the method which was suggested earlier is far more elegant.
>>> print ''.join(reversed(list(
Hello,
>>> y=list(x).reverse()
> >>> print y
> None
>
>>> L = ["a", "b", "c"]
>>> L.reverse()
>>> L
["c", "b", "a"]
As you can see, L.reverse() performs the operation on itself and returns
nothing. Hence, the return type None.
Instead of
y=''.join(list(x).reverse())
you should probably do,
>
On Wed, Jun 30, 2010 at 11:34 PM, Wyatt Schwartz wrote:
> Dear Python-List members,
>
> Sorry for asking such a simple (or possibly complicated) question, as I am
> new to Python programming. Anyways, I have read online that many popular
> websites use Python for some of their web-based applicatio
On Thu, Jul 1, 2010 at 12:09 AM, Stef Mientki wrote:
> hello,
>
> I've lot of functions that returns their result in some kind of tuple /
> list / array,
> and if there is no result, these functions return None.
> Now I'm often what to do something if I've more than 1 element in the
> result.
> S
Hello,
I have experience writing scripts to connect to the D-Bus interface provided
by different applications but have no experience writing a D-Bus interface
for an application. Could someone point me in the right direction? A
tutorial or a good example would be nice.
Cheers!!!
Zubin Mithra
Hello,
I have been using python for quite some time; however this is the
first python project i have worked on.
The code is hosted at http://github.com/zubin71/PyAutoRun
The code needs re-factoring and feature additions; i have put up a
TODO list there too. It`d be great if anyone could work on
The code snippet i have pasted at,
http://paste.pocoo.org/show/160555/
produces a traceback which also has been pasted at the above link. The
snippet attempts at socket programming using OOPs concepts. Please help.
Thankx in advance
Zubin Mithra
--
http://mail.python.org/mailman/listinfo
the right "pythonic" way of doing it.
The package can be found at www.code.google.com/p/pyautorun
I`d love any feedback, ideas and criticism after a code review. Thank
you in advance.
cheers!!!
Zubin Mithra
--
http://mail.python.org/mailman/listinfo/python-list
thank you for your help and support. i`ll keep your advice in mind. :)
cheers!!!
Zubin
On Tue, Dec 22, 2009 at 8:07 PM, Lie Ryan wrote:
> On 12/22/2009 5:13 PM, Zubin Mithra wrote:
>>
>> I have the following two implementation techniques in mind.
>>
>> def myf
I have the following two implementation techniques in mind.
def myfunc(mystring):
check = "hello, there " + mystring + "!!!"
print check
OR
structure = ["hello, there",,"!!!"]
def myfunc(mystring):
structure[2] = mystring
output = ''.join(mystring)
i heard that string concatenat
12 matches
Mail list logo