On Friday, August 3, 2012 10:50:52 PM UTC+5:30, Dennis Lee Bieber wrote:
> On Fri, 3 Aug 2012 04:49:46 -0700 (PDT), Subhabrata
>
> declaimed the following in
>
> gmane.comp.python.general:
>
>
>
> > Dear Group,
>
> >
>
> > I am trying to call the values of one function in the another funct
On Fri, 03 Aug 2012 04:49:46 -0700, Subhabrata wrote:
> I am preferring not to use argument passing
It's not 1964 any more and you're not programming in BASIC.
What you have just told us is that you prefer not to write good quality
programs, and that you prefer to write buggy, hard to maintain
subhabangal...@gmail.com wrote:
On Friday, August 3, 2012 5:19:46 PM UTC+5:30, Subhabrata wrote:
Dear Group,
I am trying to call the values of one function in the another function in the
following way:
def func1():
num1=10
num2=20
print "The Second Number is:",num
> def func1():
>
> num1=10
>
> num2=20
>
> print "The Second Number is:",num2
>
> return
>
>
> def func2():
>
> func1()
> num3=num1+num2
>
> num4=num3+num1
>
> print "New Number One is:",num3
>
> print "New Number Two is:",num4
>
>
On Friday, August 3, 2012 5:19:46 PM UTC+5:30, Subhabrata wrote:
> Dear Group,
>
>
>
> I am trying to call the values of one function in the another function in the
> following way:
>
> def func1():
>
> num1=10
>
> num2=20
>
> print "The Second Number is:",num2
>
>
Am 03.08.2012 13:49, schrieb Subhabrata:
I am trying to call the values of one function in the
> another function in the following way:
def func1():
num1=10
num2=20
print "The Second Number is:",num2
return
def func2():
num3=num1+num2
num4=num3+
On Fri, 03 Aug 2012 04:49:46 -0700, Subhabrata wrote:
> I am trying to call the values of one function in the another function
> in the following way:
> def func1():
> num1=10
> num2=20
> print "The Second Number is:",num2
> return
>
> def func2():
> num3=num1+num2
>
On 03/08/2012 12:49, Subhabrata wrote:
Dear Group,
I am trying to call the values of one function in the another function in the
following way:
def func1():
num1=10
num2=20
print "The Second Number is:",num2
return
def func2():
num3=num1+num2
num
Dear Group,
I am trying to call the values of one function in the another function in the
following way:
def func1():
num1=10
num2=20
print "The Second Number is:",num2
return
def func2():
num3=num1+num2
num4=num3+num1
print "New Number One
Victor Subervi wrote:
> On Fri, Dec 11, 2009 at 8:13 PM, Gabriel Genellina
> mailto:gagsl-...@yahoo.com.ar>> wrote:
> Are you sure the column is declared as SET and not, say, VARCHAR?
>
>
> yes
Indeed it is, and knowing that, I can actually decode your original
post. I apologize that I didn'
On Fri, Dec 11, 2009 at 8:13 PM, Gabriel Genellina
wrote:
> En Fri, 11 Dec 2009 16:28:23 -0300, Victor Subervi <
> victorsube...@gmail.com> escribió:
>
> On Fri, Dec 11, 2009 at 3:12 PM, Carsten Haese > >wrote:
>>
>> Victor Subervi wrote:
>>> > [...] if I go to print, say,
>>> > colFieldValues[2
En Fri, 11 Dec 2009 16:28:23 -0300, Victor Subervi
escribió:
On Fri, Dec 11, 2009 at 3:12 PM, Carsten Haese
wrote:
Victor Subervi wrote:
> [...] if I go to print, say,
> colFieldValues[20], which is a set, it prints out the whole set:
>
set('Extra-small','Small','Medium','Large','XLarge
On Fri, Dec 11, 2009 at 3:12 PM, Carsten Haese wrote:
> Victor Subervi wrote:
> > [...] if I go to print, say,
> > colFieldValues[20], which is a set, it prints out the whole set:
> > set('Extra-small','Small','Medium','Large','XLarge','XXLarge','XXXLarge')
> > But if I print out colFieldValues[20
Victor Subervi wrote:
> [...] if I go to print, say,
> colFieldValues[20], which is a set, it prints out the whole set:
> set('Extra-small','Small','Medium','Large','XLarge','XXLarge','XXXLarge')
> But if I print out colFieldValues[20][0], it prints out "s".
The only reasonable explanation of this
Hi;
I have the following code:
cursor.execute('describe %s;' % store)
colFields, colFieldValues = [itm[0] for itm in cursor], [itm[1] for itm in
cursor]
...
for col in colFields:
...
print '%s: %s\n' % (col, colValue[0])
Don't worry about the colValue[0]. In fact, the code throws no errors.
H
mjakowlew wrote:
> hi,
>
> I'm trying to pass some values from a webform into a python script.
>
(snip)
> Also this
> is done through Zope if that makes a difference to anyone.
Yes, it makes a difference. Zope is a world in itself, and is slighty OT
here. Note that there's a Zope mailing-list:
h
hi,
I'm trying to pass some values from a webform into a python script.
___
Name:
Email:
___
Now, how do I call these individual attributes (filename,title, etc.)
in my "processForm.py".
I think it has something to do with th
17 matches
Mail list logo