0
votes
3answers
72 views
Why is this invalid syntax?
Why is this complaining about an invalid syntax?
#! /usr/bin/python
recipients = []
recipients.append('chris@elserinteractive.com')
for recip in recipients:
print recip
I keep getting:
File …
1
vote
3answers
60 views
Object appended to a list instance appears in a different instance of that list.
Hi,
I was writing this little piece of code as an exercise in object-oriented programming.
Here I'm trying to define a house as a list of rooms and each room as a list of devices (lamps, for …
2
votes
5answers
114 views
Need help understanding how this recursive function is working
Here's a function (credit to user Abbot, for providing it in another question)
def traverse(ftp):
level = {}
for entry in (path for path in ftp.nlst() if path not in ('.', '..')):
…
0
votes
3answers
69 views
Including non-Python files with setup.py
How do I make setup.py include a file that isn't part of the code? (Specifically, it's a license file, but it could be any other thing.)
I want to be able to control the location of the file. In the …
2
votes
4answers
121 views
Call class method from variable in Python
Hello there!
If I have a Python class, and would like to call a function from it depending on a variable, how would I do so? I imagined following could do it:
class CallMe: # Class
def App(): # …
4
votes
6answers
207 views
How can a total, complete beginner read source code?
I am a complete, total beginner in programming, although I do have knowledge of CSS and HTML.
I would like to learn Python. I downloaded lots of source code but the amount of files and the complexity …
1
vote
4answers
128 views
how to make import conditionally in Python?
I want to do something like this in C:
#ifdef SOMETHING
do_this();
#endif
But in Python this doesn't jive:
if something:
import module
What am I doing wrong? Is this possible in the first …
1
vote
1answer
45 views
Python mechanize loses attributes on second open
This is a really specialized case and I feel awkward asking it; however I'm at wits end working on it.
I need to follow a tracking number through a form and to a results page so I've been using …
0
votes
1answer
42 views
Getting python.exe path at run time
On Windows, how do I find the path to python.exe from within a script at runtime?
8
votes
5answers
3k views
Python - easy way to add N seconds to a datetime.time?
Given a datetime.time value in Python, is there a standard way to add an integer number of seconds to it, so that 11:34:59 + 3 = 11:35:02, for example?
These obvious ideas don't work:
>>> …
1
vote
6answers
201 views
Is there a tuple data structure in Python
I want to have an 3 item combination like tag, name, and list of values (array) what is the best possible data structure to store such things.
Current I am using dictionary, but it only allows 2 …
0
votes
4answers
77 views
ValueError: invalid literal for int() with base 10: ‘’
I am creating a program that reads a file and if the first line of the file is not blank, it reads the next four lines. Calculations are performed on those lines and then the next line is read. If …
2
votes
2answers
57 views
Invalid Token when using Octal numbers.
Hi,
I'm a beginner in python and I'm trying to use a octal number in my script, but when I try it, it returns me that error:
>>> a = 010
SyntaxError: invalid token (<pyshell#0>, line …
1
vote
1answer
123 views
Python split value of a string
Hello,
I am working on a site in Python built on the back of Django(awesome framework, cant get my head around python), I looking to split a string that is returned from a database and I want it to …
1
vote
2answers
122 views
Python Spliting a string
Hello,
I looking to split a string up with python, I have read the documentation but don't fully understand how to do it, I understand that I need to have some kind of identifier in the string so …
