In <871t7sbkex@elektro.pacujo.net> Marko Rauhamaa writes:
> Ethan Furman :
> > No, it isn't. Using '\' for line continuation is strongly discouraged.
> Why would you discourage valid syntax?
Some things that are permissible may not be desirable.
--
J
valuates to
j = len(data)
which would yield 5 for a five-element list, but the last actual element
is in data[4].
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
--
inding out if a name is registered? There
are lots of possible ways to do it. Do you have one in mind?
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "Th
; > callable. promptUser_PWord() has to be a function or a class.
> >
> Yes, but I guess the OP's program will run into the SyntaxError when
> trying to import the module, i.e., before it ever encounters the
> TypeError: 'module' object is not callable.
Good poi
en't
callable. promptUser_PWord() has to be a function or a class.
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"
--
htt
taxError: 'return' outside function
Show us the complete definition of promptUser_PWord().
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "Th
It has to be a function
or a class.
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"
--
https://mail.python.org/mailman/listinfo/python-list
P, try using an older 3.4 version of Python.
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"
--
https://mail.python.org/mailman/listinfo/python-list
Hey Everyone!
I am very glad to announce the first release of Yosai, a security framework
for python applications.
Details, including link to project:
http://www.daringordon.com/introducing_yosai
Regards
Darin
--
https://mail.python.org/mailman/listinfo/python-list
or two.
Some blank lines wouldn't hurt either.
Also it would be nice to define some of the terms you're using. What is
a blind? What does "in front" mean? What is a "muck hand"?
--
John Gordon Imagine what it must be like for a real medical doctor to
gor
code: %s' % response.status_code
print 'response content:'
print response.content
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a real serial killer to watch 'Dexter'.
--
https://mail.python.org/mailman/listinfo/python-list
;pip install HTML5', three times, with exactly the same result each time.
Did you mean to execute the same command three times over? If so, did
you expect to get different results the second or third time?
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...
uot; HTTP header with SOAP requests. It may be that
> simple.
The API does provide some SOAP calls, but the specific call I'm using is
REST. Is there a corresponding header I should use?
Thanks.
--
John Gordon Imagine what it must be like for a real medical doctor to
gor.
ng zip on two single items, not sequences, and you
can't do that.
Glancing over the code it appears that you're saving the cell contents
in two lists, x and y. Perhaps you meant to call zip on those lists
instead of on keys and values?
--
John Gordon Imagine what it must be li
ta modifications, but I thought it
was allowed for things like logging out of your session.
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a real serial killer to watch 'Dexter'.
--
https://mail.python.org/mailman/listinfo/python-list
oringCellRelation'):
# print the id's of the serving and neighbor cells
print("%s--%s" % (serving_cell.attrib['id'], neighbor.attrib['id']))
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a real serial killer to watch 'Dexter'.
--
https://mail.python.org/mailman/listinfo/python-list
given time and stop at another given time,
> is that possible?
You could write a separate program whose only job is to send a STOP or
CONTINUE signal to your main program, and then run that program from a
scheduler.
The standard system "kill" command would probably work for this purp
thing common like that?
If you're on Unix, 'kill' and 'cron' are already built-in.
If you want to solve your problem entirely within Python, look at the
"scheduler" module. (Although even this isn't a complete solution, as you
still have to make sure the progr
> >>> -3 .abs()
> AttributeError: 'int' object has no attribute 'abs'
Integer objects don't have a built-in function named abs(). If you
want the absolute value of an integer, call abs directly, like so:
abs(-3)
--
John Gordon Imagine what it must
see, every possible logic branch ends up with a
call to cameraman().
The kid function doesn't call instructions, but the last line of your
script does call it, unconditionally.
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch
what I'm doing wrong?
Is RETURN INTEGER; allowed?
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a real serial killer to watch 'Dexter'.
--
https://mail.python.org/mailman/listinfo/python-list
Any help appreciated
big_string = ', '.join(my_list[1:])
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a real serial killer to watch 'Dexter'.
--
https://mail.python.org/mailman/listinfo/python-list
Sure,
it's a little more work for the user, but it will pound any type of nail
though a variety of surfaces. I.e., it's reusable.
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a real serial killer to w
aspect of logging, like sending the
output to a file instead of the default destination?
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a real serial killer to watch 'Dexter'.
--
https://mail.python.org/mailman/listinfo/python-list
thod upper of str object at 0x02283F58>]
> Why doesn't the python interpreter just return
> ['HI, 'BOSS'] ?
> This isn't a big deal, but I am just curious as to why it does this.
Because you typed 'str.upper' instead of 'str.upper()'.
-
rstanding. Is this a bug in the os package that comes
> with Python 3.3? Anybody got a fix for it?
If there is a bug, it's much more likely to be in the webserver code that
sets the REMOTE_USER value.
--
John Gordon Imagine what it must be like for a real medical doctor to
sum1 = int(fields[4]) + int(fields[5]) + int(fields[6])
sum2 = int(fields[7]) + int(fields[8])
# compute the averages
average1 = sum1 / 3.0
average2 = sum2 / 2.0
# display output
print '%s %f %f' % (name, average1, average2)
--
John Gordo
ipated.
Communicate with customers to keep them informed of the project's progress.
Schedule meetings with the customer as needed.
Ensure that a test plan exists and is carried out.
Coordinate project delivery and installation.
Coordinate bug reports and bugfixes.
--
John Gordon Imagine w
In mauro writes:
> - Dictionaries and sets are both accessed by key
As far as I have used sets, they are not accessed by key.
>>> x = set([1, 2, 'buckle my shoe'])
>>> x
set([1, 2, 'buckle my shoe'])
>>> 1 in x
True
>>> 5 in x
False
nt,
like this:
t1 = test1.split(',')[0]
t2 = test2.split(',')[0]
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a real serial killer to watch 'Dexter'.
--
https://mail.python.org/mailman/listinfo/python-list
In teddyb...@gmail.com
writes:
> October 22, 2011
> date1 = soup.span.text
> data=soup.find_all(date="value")
Try this:
soup.find_all(name="span", class="date")
--
John Gordon Imagine what it must be like for a real medical doctor to
gor..
it twice
Are there two occurrences of 'March 5, 2014'
in the HTML? If so, then beautifulsoup is doing its job correctly.
It might help if you posted the sample HTML data you're working with.
--
John Gordon Imagine what it must be like for a real medical doctor to
g
s the str.lower() function object, which is a silly thing to sort
on. Surely you want to sort on the *result* of that function, which is
what your second print does.
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House'
haps that's the issue?
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a real serial killer to watch 'Dexter'.
--
https://mail.python.org/mailman/listinfo/python-list
In Petite Abeille
writes:
> Alternatively=85 if it=92s really a function=85 wrap it in a select =
> statement=85 such as:
> select foo() as value from dual
That will get the return value into an SQL variable, but the OP wanted
to know how to fetch it from python code.
--
Jo
repr()),
> explicitly iterate over it, like this:
> def display(d):
> return '{'+','.join('%r: %r'%(key,d[key]) for key in sorted(d))+'}'
You could also use the OrderedDict type, which is subclass of dict that
preserves insertion order.
--
John
ulate any items,
matching your observed output.
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a real serial killer to watch 'Dexter'.
--
https://mail.python.org/mailman/listinfo/python-list
#x27;shebang' entry as the first line in the file which specifies the
program that shall be executed;
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a real serial killer to watch 'Dexter'.
--
https://mail.python.org/mailman/listinfo/python-list
ocation to an
influence matrix file by using the '-mf' or '--infmat_file' arguments.
There are also -d and -l options that do ... something.
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a real serial killer to watch 'Dexter'.
--
https://mail.python.org/mailman/listinfo/python-list
; I'm using Python 2.7.
How about three lines?
subtree = tree
for key in keys:
subtree = subtree.get(key)
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a real serial killer to watch 'Dexter'.
--
https://mail.python.org/mailman/listinfo/python-list
f (envp_write < envp_read)
> {
> memset(envp_write, 0, ((unsigned int) envp_read -
> (unsigned int) envp_write));
> }
I think it's complaining about casting the char ** objects to unsigned int.
--
John Gordon Imagine what it
In Nick Mellor
writes:
> No "random" module method is used anywhere else while this code is
> executing.
Are you sure? How did you verify this?
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House',
ucts is %s" % [(rnd.choice(PRODUCTS),
rnd.choice(range(10))) for r in range(rnd.randrange(7))])
Run that code sample and see if the results differ when qty is 4 vs 0.
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a
lay.txt as one long string
because 'for line in fin:' tells it to read line-by-line.
If you want to read the entire contents, use the read() method:
file_content = fin.read()
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.com
\\lib\\site-packages',
> 'C:\\Python34\\Lib\\site-packages\\PySide']
> >>> ---
> import PySide
> Traceback (most recent call last):
> File "", line 1, in
> ImportError: No module named 'PySide'
Is there a file named __init__.py in the PyS
hat do you mean by saying "webbrowser's won't allow client to open
hyperlinks with file protocol"? Of course they do.
My web browser works just fine with links such as this:
foo.html
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwa
.
Aha! I didn't know that. Now that I think about it, I suppose it makes
sense.
Perhaps the OP could write a separate application for handling local
files, something like:
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch
In <8bc01036-ee9e-4de9-b569-7039dcc05...@googlegroups.com> funky
writes:
What do you want the program to do?
What is it doing instead?
Do you get any error messages?
Don't just throw code at us and ask us to fix it...
--
John Gordon Imagine what it must be like for a r
e of freecalc_total here>'], stdout=devnull,stderr=subprocess.STDOUT)
> devnull.close()
I think you can just include freecalc_total directly as part of the
argument list, like this:
runCommand = subprocess.call(['stressapptest', freecalc_total],
stdout=devnull, std
; answers.
His post title began with "Re: ", so I assume it was a followup to an
(possibly expired) original post that did have context.
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a real serial killer t
Has the Google App Engine library been installed on your system?
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"
--
http://mail.python.org/mailman/listinfo/python-list
Process(write2file('./mem/ENGINE_PID', ENGINEPID);
You have too many ('s this line.
> write2file(SENTEMPPATH, ''); write2file(INPUTMEM, ''));
And too many )'s on this one.
--
John Gordon A is for Amy, who fell down the sta
In <40816fed-38d4-4baa-92cc-c80cd8feb...@googlegroups.com>
englishkevin...@gmail.com writes:
> I know the title doesn't make much sense, but I didnt know how to explain my
> problem.
> Anywho, I've opened a page's source in URLLIB
> starturlsource = starturlopen.read()
> string.find(starturlsou
sly, but we
don't know what it's *supposed* to do.
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"
--
http://ma
n't necessarily get written right away. In particular,
screen output often waits until it receives a newline before displaying
anything.
flush() makes sure it all gets written *right now*.
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is
a function that waits for the user to press a key and
then returns the key that was pressed?
Or are you asking for a function that detects whether a key has been
pressed at all?
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Bas
ust have left that part out.
Anyway, I think you're doing two things wrong:
1. You aren't capturing the user's input. The input() function returns
the user's input, but you aren't assigning this to a variable; it's just
being thrown away. You should call input() li
e.fromtimestamp(float(start_timestamp))
> end_datetime = datetime.fromtimestamp(float(end_timestamp))
> duration = end_datetime - start_datetime
> =
What is the type and value of start_timestamp and end_timestamp?
--
John Gordon
In <3d0038fd-00ec-4560-ab0d-06528f838...@googlegroups.com> pestre...@gmail.com
writes:
> I think it's a float, I see in the code
> if request.method == "POST":
> end_timestamp = request.POST.get('end_timestamp', None)
> start_timestamp = request.POST.get('start_timestamp', None)
= "Hello There"
>>> y = x.lower()
>>> print y
hello there
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycr
27;t want to assign it to self.high0? That's easy;
assign it to a temporary variable first, and only assign it to self.high0
if it falls in the desired range.
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"
--
https://mail.python.org/mailman/listinfo/python-list
also be caused by using a mix of tabs and spaces on the
same line. Don't do that.
(And by the way, it's generally better to post errors and code as text
instead of a screenshot.)
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix
> to know I've got it) and I try to use the following code:
> returnedJSON = json.loads('https://coinbase.com/api/v1/prices/buy')
> print returnedString
JSON is a notation for exchanging data; it knows nothing about URLs.
It's up to you to connect to the URL and read t
In <76784bad-cd6d-48f9-b358-54afb2784...@googlegroups.com> eamonn...@gmail.com
writes:
> they're making programming easier... by not coding as much. Oh well,
> guess coding is dead :(
Pressing keys on a keyboard was never the hard part of coding.
--
John Gordon
max_occurrences = 0
themode = None
for i in mylist:
thecount = mylist.count(i)
if thecount > max_occurrences:
max_occurrences = thecount
themode = i
print(themode)
--
John Gordon A is for Amy, who fe
hoice, ".pizza"
elif user_choice == 2:
print "You have selected", st, ".Steak"
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"
--
https://mail.python.org/mailman/listinfo/python-list
\interpolate\__init__.py", line
> 150, in
> from .interpolate import *
> File "C:\Python33\lib\site-packages\scipy\interpolate\interpolate.py", line
> 12, in
> import scipy.special as spec
> File "C:\Python33\lib\site-packages\scipy\special\__init__.
he
> WSDL calls for a sequence of SubscriberDataTypes (this application is used
> to test an insurance companys' rating service).
Contact whomever is providing this data and ask them for documentation.
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix
ysite/mysite',
> My admin.py file is:
> #Adding this app to the admin page.
> from django.contrib import admin
> from mysite.models import membership, address, status, audio, video,
> photos
Does /home/gary/ProgramFiles/mysite/mysite/models.py define an obj
;def'. Post the whole program.
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"
--
https://mail.python.org/mailman/listinfo/python-list
In Gary Roach
writes:
> On 09/19/2013 11:15 AM, John Gordon wrote:
> > Does /home/gary/ProgramFiles/mysite/mysite/models.py define an object
> > named 'membership'?
> Yes. The following is the top part of the models.py file: q
> class Membership(models.M
master input file and a master output file for each exercise. If
the student program's output matches the master output when run from the
master input, then it is correct.
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com
mail access from the judge account too.
Not sure how to easily do that.
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"
a
statement instead of a function.
In other words, it is used like this:
name = "Bob"
print "Hello ", name
Because there are parentheses around the text to be printed, your version
of python is interpreting it as a tuple. Remove the parentheses and you
should be ok.
user types the web address directly
into their browser, or clicks on a bookmark, or many other ways.
Also, obviously, it's up to the browser to truthfully report HTTP_REFERER;
the server itself has no idea what page you were on previously. What
browser are you using?
--
John Gordon
e KeyError? Something else?
In any case, I'm surprised that doesn't work. That should be the correct
way to do it.
You could try this:
try:
referer = os.environ.get('HTTP_REFERER', 'UnknownRef')
except KeyError:
referer = None
if not ref
he problem. You can't
arbitrarily break a statement into separate lines.
If not, then you'll have to post more of the code; the problem isn't on
this line.
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assa
eb server's environment.
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"
--
https://mail.python.org/mailman/listinfo/python-list
use you're using a semicolon after the print statement.
This code is really two completely separate statements:
print "The result is : ";x/y
It prints the message and then, as a separate action, it calculates the
value of x/y (and then throws that value away, because it isn't ass
handling from scratch, and
frankly it was a nightmare. But it wasn't a small project, so yours
might be doable.
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
-- E
ame,
so I'm not surprised that you get that error.
This entire block of code is conditionally executed upon __name__ being
equal to "main"; perhaps that condition is false when the code is run and
thus the error is never triggered.
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a real serial killer to watch 'Dexter'.
--
https://mail.python.org/mailman/listinfo/python-list
it to the clipboard.
For other options (such as taking a screenshot of a window or a specific
region on the screen), see
http://guides.macrumors.com/Taking_Screenshots_in_Mac_OS_X
I wonder what this has to do with Python though.
--
John Gordon Imagine what it must be like for a real medic
uot;search()" got multiple keyword argument for value"
> I dont follow why I get it when the number of arguments I am calling with the
> function call match the parameters in the definition.
What type is "value" expected to be? A single item, a list, a dict, etc?
--
Jo
FROM LISTS TO LONG STRINGS SO I CAN STORE SUCCESSFULLY LIST
> PYTHON DATATYPE TO MYSQL SCALAR STRING.
> EVERYHTIGN I TRIED FAILED.
How did it fail?
Error message?
No results at all?
Different results than you wanted? If so, how did they differ?
--
John Gordon Imagine what it must be
21:52 2013] [error] [client 176.92.96.218] visit =
> visit.split()
> [Tue Nov 05 23:21:52 2013] [error] [client 176.92.96.218]
> AttributeError: 'NoneType' object has no attribute 'split'
It appears that in the row you're fetching from the visitors table, the
d just before 'visits'?
Are you sure refs is null? According to the sample values you gave, refs
is 'Europe/Athens'.
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a real serial killer to watch 'Dexter'.
--
https://mail.python.org/mailman/listinfo/python-list
h time?
Yes, assuming you have no other software that depends on the older
Python version.
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a real serial killer to watch 'Dexter'.
--
https://mail.python.org/mailman/listinfo/python-list
bar.add(4, 7).
9 is printed by your statement 'print bar.var'.
Your program has those statements in that order, so they are printed
in that order. Why did you expect a different order?
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch &
stake is. Help.!
The seek() function doesn't return any data; it just relocates the file
pointer. You still have to do a read operation to get data from the
new location.
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch &
In pra devOPS
writes:
> I wanted to compare two json files ignoring few of the keys in the json
> files.
> Can anybody suggest me few things?
Load each json file into a python object, delete the keys you don't care
about, and compare the two objects.
--
John Gordon I
quirement?
Python functions can return lists, tuples, dictionaries, or any other
container-like object.
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "
eting
You will get the output 'Hello'.
But, if you just REFER to the function, instead of actually CALLING it:
greeting = hello
print greeting
You will get this output:
Because you omitted the double parentheses, you're getting the hello
function obje
kerows()
handles it?
(By the way, if your post had included some sample data that illustrates
the problem, it would have been much easier to figure out a solution.
Instead, we are left guessing at your XML format, and at the particular
implementation of flatten_dict().)
--
John Gordon
dit -> Mark.
Then use the mouse to select a rectangular area of text.
Then right-click the title bar again and select Edit -> Copy.
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
c
class, one of them lacking the probe attribute.
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"
--
https://mail.python.org/mailman/listinfo/python-list
ll result in LineLogic having the default
> initialisation i.e. nothing, as the __init__ function is not part of the
> class.
Ooh, I like your guess better. :-)
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulte
ing *is* a sequence, so technically
you're passing the correct sort of object as the second argument to
execute(). But the SQL statement only asks for one parameter, so sqlite
is wondering where it should put the other 39 items.
--
John Gordon A is for Amy, who fell down the s
In <6c0af13a-a07d-4c29-b1fd-dd53768e6...@googlegroups.com> kbtyo
writes:
> https://gist.github.com/ahlusar1989/de2381c1fb77e96ae601
Are you sure this is the actual code you're running? Lines 48 and 49 are
clearly meant to be comments, but they do not begin with a hash sign.
-
= get_slot(aMap, key)
> TypeError: 'NoneType' object is not iterable
> Execution Successful!
Where does the message "Execution Successful!" come from? It seems like
you have other code that you haven't shown us.
In any case, I saved your code and ran it, and di
may not be your problem, as you haven't told us exactly
what is going wrong.
--
John Gordon A is for Amy, who fell down the stairs
gor...@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Ti
301 - 400 of 604 matches
Mail list logo