active questions tagged python+beginner - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T02:24:52Zhttp://stackoverflow.com/feeds/tag/python+beginnerhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1911014/concatenate-items-in-dictionary-in-python-using-list-comprehension1concatenate items in dictionary in python using list comprehensionJaelebi2009-12-15T22:49:10Z2009-12-16T18:30:11Z
<p>EDIT: Clarified the question a bit</p>
<p>How can I get a string from a dictionary with the format</p>
<pre><code>key1 = value1
key2 = value2
</code></pre>
<p>in a relatively fast way ? (relative to plain concatenation)</p>
http://stackoverflow.com/questions/1906991/convert-single-quoted-string-to-double1Convert single-quoted string to doubleKumar2009-12-15T12:06:37Z2009-12-16T17:40:17Z
<p>I want to check whether the given string is single- or double-quoted. If it is single quote I want to convert it to be double quote, else it has to be same double quote.</p>
http://stackoverflow.com/questions/1914883/python-list-to-ints-to-a-single-number0Python: List to ints to a single number?harpalss2009-12-16T14:11:51Z2009-12-16T15:56:48Z
<p>Say i have a several list if ints:</p>
<pre><code>x = [['48', '5', '0'], ['77', '56', '0'],
['23', '76', '34', '0']]
</code></pre>
<p>I want this list to be converted to a single number, but the the single number type is still an integer i.e.:</p>
<pre><code>4850775602376340
</code></pre>
<p>i have been using this code to carry out the process:</p>
<pre><code>num = int(''.join(map(str,x)))
</code></pre>
<p>but i keep getting a value error.</p>
<p>Also if my list contained negative integers how would i convert them to there absolute value? Then convert them to a single number?</p>
<blockquote>
<p>x2 = [['48', '-5', '0'], ['77', '56',
'0'],
['23', '76', '-34', '0']]</p>
<p>x2 = 4850775602376340</p>
</blockquote>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1907538/python-import-a-file-and-convert-to-a-list0Python: Import a file and convert to a listharpalss2009-12-15T13:40:51Z2009-12-16T14:28:34Z
<p>I need help with importing a file and converting each line into a list.</p>
<p>An example of the file would look like:</p>
<pre><code>p wfgh 1111 11111 111111
287 48 0
65626 -1818 0
4654 21512 02020 0
</code></pre>
<p>The first line beginning with p is a header and the rest are clauses.
Each clause line must begin with a series of at least two integers and finish with a zero</p>
<p>thanks in advance</p>
http://stackoverflow.com/questions/1913613/xml-dom-minidom-python-issue0xml.dom.minidom python issuetm1rbrt2009-12-16T10:06:09Z2009-12-16T11:41:02Z
<pre><code>from xml.dom.minidom import *
resp = "<title> This is a test! </title>"
rssDoc = parseString(resp)
titles = rssDoc.getElementsByTagName('title')
moo = ""
for t in titles:
moo += t.nodeValue;
</code></pre>
<p>Gives the following error:</p>
<pre><code>main.py, line 42, in
get moo += t.nodeValue;
TypeError: cannot concatenate 'str' and 'NoneType' objects
</code></pre>
http://stackoverflow.com/questions/1910953/inlines-python-django-technique-for-objects0Inlines Python/Django technique for objectsMasi2009-12-15T22:38:06Z2009-12-15T23:11:06Z
<p>I am reading the source code of the Django application <em>blog</em> at <code>git://github.com/nathanborror/django-basic-apps.git</code>.</p>
<p><strong>How do you read the following Django code?</strong></p>
<pre><code>{% tags_for_object object as tag_list %}
</code></pre>
<p><strong>My attempt:</strong> Make the variable <em>object</em> of the type *tags_for_object* and rename the variable to *tag_list*.</p>
<p>The <em>object</em> apparently is based on the file blog/templates/inlines/default.html:</p>
<pre><code>{% if object %}
{{ object }}
{% else %}
{% for object in object_list %}
{{ object }}
{% endfor %}
{% endif %}
</code></pre>
<p><strong>What is the befefit of putting the logic to two-step procedure: run single object, else loop through a list of objects?</strong></p>
http://stackoverflow.com/questions/1909512/what-is-python-used-for3What is python used for?Jake2009-12-15T18:46:46Z2009-12-15T18:49:03Z
<p>Okay, so i am fairly new at programming (knowing only html, css, and javascript) and i just started diving into python. But what i want to know is, what is it used for? how can i apply python to an object?</p>
http://stackoverflow.com/questions/1908961/python-list-problems0Python: list problemsharpalss2009-12-15T17:12:41Z2009-12-15T18:23:05Z
<p>I've read in a text file and converted each line into a list.</p>
<p>using this script:</p>
<pre><code>l = [s.strip().split() for s in open("cluster2.wcnf").readlines()]
</code></pre>
<p>How would i go about :</p>
<ol>
<li>the file it opens is dynamic rather than static? i.e. the user
chooses the file to open.</li>
<li>Select specific lines to read after it has been converted to a list.</li>
<li>assign objects to values in the list</li>
<li>select the first, last or a number of values in each line?</li>
</ol>
<p>thanks in advance</p>
http://stackoverflow.com/questions/1906717/splitting-integer-in-python0splitting integer in python?mekasperasky2009-12-15T11:09:00Z2009-12-15T15:21:52Z
<p>my integer input is suppose 12345 , i want to split and put it into an array as 1,2,3,4,5 . How will i be able to do it?</p>
http://stackoverflow.com/questions/1907647/python-rawinput-def-input-problem1python raw_input def input problemJohnWong2009-12-15T13:57:20Z2009-12-15T14:46:20Z
<p>I am only going to post the portion where the problem is at, the program has no error (all the codes are valid except for this <code>raw_input</code> problem)</p>
<p>I tested with <code>search_function(1)</code> and etc and it worked.</p>
<p>But if I do this while loop, it doesn't print anything.
Example output:</p>
<blockquote>
<p>Enter a number to print specific table,
or STOP to quit: 2 Enter a number to
print specific table, or STOP to quit:
2 Enter a number to print specific
table, or STOP to quit: 1 Enter a
number to print specific table, or STOP
to quit: Enter a number to print
specific table, or STOP to quit: 1
Enter a number to print specific table,
or STOP to quit: Enter a number to
print specific table, or STOP to quit:
STOP</p>
</blockquote>
<pre><code>def search_function(x):
if x == 1:
for student in students:
print "%-17s|%-10s|%-6s|%3s" % student.print_information()
print '\n'
if x == 2:
print "%-17s|%-10s|%s" %(header[0],header[1],header[4])
print "-" * 45
for student in students:
print "%-17s|%-10s|%s" %student.print_first()
print '\n'
print "Simple Analysis on favorite sports: "
# Printing all sports that are specified by students
for s in set(Student.sports): # class attribute
print s, Student.sports.count(s), round(((float(Student.sports.count(s)) / num_students) *100),1)
# Printing sports that are not picked
allsports = ['Basketball','Football','Other','Baseball','Handball','Soccer','Volleyball','I do not like sport']
for s in set(allsports) - set(Student.sports):
print s, 0, '0%'
choice_list = Student.sports
for choice in choice_list:
choice_dict[choice] = choice_dict.get(choice, 0) + 1
print max(choice_dict)
print min(choice_dict)
elif x == 3:
print "%-17|%-10s|%-16s|%s" %(header[0],header[1],header[5],header[6])
print "-" * 45
for student in students:
print "%-17s|%-10s|%-16s|%s" % student.print_second()
print '\n'
elif x == 4:
print "%-17s|%-10s|%s" %(header[0],header[1],header[7])
print "-" * 45
for student in students:
print "%-17s|%-10s|%s" %student.print_third()
print '\n'
elif x == 5:
print "%-17s|%-10s|%-15s|%s" %(header[0],header[1],header[8],header[9])
print "-" * 45
for student in students:
print "%-17s|%-10s|%-16s|%s" % student.print_fourth()
print '\n'
x = raw_input("Enter a number to print specific table, or STOP to quit: ")
while x != 'STOP':
search_function(x)
x = raw_input("Enter a number to print specific table, or STOP to quit: ")
</code></pre>
http://stackoverflow.com/questions/1907196/how-do-i-check-if-its-monday-to-friday-and-the-time-is-between-10-am-to-3-pm2How do I check if it's Monday to Friday and the time is between 10 AM to 3 PM?Vishal2009-12-15T12:45:45Z2009-12-15T14:13:48Z
<p>In python how do I check if its a weekday (Monday - Friday) and the time is between 10 AM to 3 PM?</p>
http://stackoverflow.com/questions/1906926/python-unbound-method-again0python unbound method againJohnWong2009-12-15T11:51:28Z2009-12-15T13:54:48Z
<p>This gets me into difficult time (sorry, i am still very new to python)
Thank you for any kind of help.</p>
<p>The error</p>
<blockquote>
<pre><code>print Student.MostFrequent() TypeError: unbound method
</code></pre>
<p>MostFrequent() must be called with
Student instance as first argument
(got nothing instead)</p>
</blockquote>
<p>This Student.MostFrequent() is called all the way in the end (last line) and the def is last def in the class</p>
<p>EDITED - Naming convention</p>
<p>My long code</p>
<pre><code>import csv
class Student:
sports = []
ftopics = []
stopics = []
choice_list = []
choice_dict = {}
def __init__(self, row):
self.lname, self.fname, self.ID, self.gender, self.sport, self.movie, self.movieyr, self.country, self.ftopic, self.stopic = row
self.sports.append(self.sport)
self.ftopics.append(self.ftopic)
self.stopics.append(self.stopic)
def print_information(self):
return (self.lname, self.fname, self.ID, self.gender)
def print_first(self):
return (self.lname, self.fname, self.sport)
def print_second(self):
return (self.lname, self.fname, self.movie, self.movieyr)
def print_third(self):
return (self.lname, self.fname, self.country)
def print_fourth(self):
return (self.lname, self.fname, self.ftopic, self.stopic)
def most_frequent(self):
for choice in self.choice_list:
self.choice_dict[choice] = self.choice_dict.get(choice, 0) + 1
self.mostFrequent = sorted([(v, k) for k, v in self.choice_dict.items()], reverse=True)
print self.mostFrequent
reader = csv.reader(open('new_mondy_csc_data_revise.csv'), delimiter=',', quotechar='"')
header = tuple(reader.next())
print "%-17s|%-10s|%-6s|%s" %header[:4]
print "-" * 45
students = list(map(Student, reader)) # read all remaining lines
for student in students:
print "%-17s|%-10s|%-6s|%3s" % student.print_information()
print "%-17s|%-10s|%s" %(header[0],header[1],header[4])
print "-" * 45
for student in students:
print "%-17s|%-10s|%s" %student.print_first()
print "%-17s|%-10s|%-16s|%s" %(header[0],header[1],header[5],header[6])
print "-" * 45
for student in students:
print "%-17s|%-10s|%-16s|%s" % student.print_second()
print "%-17s|%-10s|%s" %(header[0],header[1],header[7])
print "-" * 45
for student in students:
print "%-17s|%-10s|%s" %student.print_third()
print "%-17s|%-10s|%-15s|%s" %(header[0],header[1],header[8],header[9])
print "-" * 45
for student in students:
print "%-17s|%-10s|%-16s|%s" % student.print_fourth()
k = len(students)
# Printing all sports that are specified by students
for s in set(Student.sports): # class attribute
print s, Student.sports.count(s), round(((float(Student.sports.count(s)) / k) *100),1)
# Printing sports that are not picked
allsports = ['Basketball','Football','Other','Baseball','Handball','Soccer','Volleyball','I do not like sport']
allsports.sort()
for s in set(allsports) - set(Student.sports):
print s, 0, '0%'
Student.choice_list = Student.sports
X = Student()
X.most_frequent()
#class Search(Student):
# def __init__(self):
# Student.__init__
</code></pre>
http://stackoverflow.com/questions/1907519/nested-looping-in-python1nested looping in pythonmekasperasky2009-12-15T13:36:33Z2009-12-15T13:53:41Z
<p>in a string suppose 12345 , i want to take nested loops , so that i would be able to iterate through the string in this following way :-</p>
<ol>
<li>1, 2, 3, 4, 5 would be taken as integers </li>
<li>12, 3, 4,5 as integers</li>
<li>1, 23, 4, 5 as integers</li>
<li>1, 2, 34, 5 as integers
...</li>
</ol>
<p>And so on. I know what's the logic but being a noob in Python, I'm not able to form the loop.</p>
http://stackoverflow.com/questions/1902487/how-to-properly-remove-a-specific-manytomany-relationship0How to properly remove a specific ManyToMany relationship?Matt McCormick2009-12-14T18:05:57Z2009-12-14T19:00:23Z
<p>I have a ManyToMany relationship with one of my Models. On deleting a child, I want to remove the relationship but leave the record as it might be being used by other objects. On calling the delete view, I get an AttributeError error:</p>
<blockquote>
<p>Exception Value: 'QuerySet' object has
no attribute 'clear'</p>
</blockquote>
<p>This is my models.py:</p>
<pre><code>class Feed(models.Model):
username = models.CharField(max_length=255, unique=True)
class Digest(models.Model):
name = models.CharField(max_length=255)
user = models.ForeignKey(User)
items = models.PositiveIntegerField()
keywords = models.CharField(max_length=255, null=True, blank=True)
digest_id = models.CharField(max_length=20, unique=True)
time_added = models.DateTimeField(auto_now_add=True)
active = models.BooleanField(default=1)
feeds = models.ManyToManyField(Feed)
</code></pre>
<p>And the relevant section of views.py:</p>
<pre><code>def feed_delete(request, id):
digest = get_object_or_404(Digest, id=id)
if digest.user == request.user:
Feed.objects.get(id=request.POST.get('id')).digest_set.filter(id=id).clear()
return HttpResponseRedirect(digest.get_absolute_url())
</code></pre>
http://stackoverflow.com/questions/1901518/the-following-code-in-python-and-why0The following code in python (and why) [closed]tm1rbrt2009-12-14T15:21:12Z2009-12-14T16:48:08Z
<p>I am learning python because it looks very nice and i know a bit of ruby and perl.</p>
<p>The following is a C program to plot 3d points onto the screen. I used this as an example because it uses arrays, structures and function calls. I left out classes because i believe that sort of (OOP) thing is used simularly in all languages (correct me if im wrong). Understand that i do know how to write the following in python (with a bit of help from google), but i would like to know what sort of methods you would use and why.</p>
<p><strong>Please dont feel the need to answer if you don't have the time or don't enjoy this kind of thing!</strong></p>
<pre><code>#include <stdlib.h>
int screenWidth = 10;
int screenHeight = 10;
char *buf;
inline void draw3dPoint(int *i3dPoint) {
buf[
(((i3dPoint[1] / i3dPoint[2]) + (screenHeight/2)) * screenWidth) +
(i3dPoint[0] / i3dPoint[2]) + (screenWidth/2)] = 1;
}
main() {
int x, y;
buf = malloc(sizeof(char)*screenWidth*screenHeight);
for(x = 0; x < screenWidth * screenHeight; x++)
buf[x] =0;
int *i3dPoint = malloc(sizeof(int)*3);
i3dPoint[0] = 3; i3dPoint[1] = 0; i3dPoint[2] = 5;
draw3dPoint(i3dPoint);
i3dPoint[0] = 0; i3dPoint[1] = 4; i3dPoint[2] = 2;
draw3dPoint(i3dPoint);
i3dPoint[0] = -3; i3dPoint[1] = -4; i3dPoint[2] = 3;
draw3dPoint(i3dPoint);
for(y = 0; y < screenHeight; y++) {
for(x = 0; x < screenWidth; x++)
if(buf[(y*screenWidth)+x])
printf("#");
else
printf(" ");
printf(".\n");
}
free(buf);
free(i3dPoint);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1900956/write-variable-to-file-including-name0Write variable to file, including nameOrjanp2009-12-14T13:34:33Z2009-12-14T16:42:17Z
<p>Let's say I have the following dictionary in a small application. </p>
<pre><code>dict = {'one': 1, 'two': 2}
</code></pre>
<p>What if I would like to write the exact code line, with the dict name and all, to a file. Is there a function in python that let me do it? Or do I have to convert it to a string first? Not a problem to convert it, but maybe there is an easier way.</p>
<p>I do not need a way to convert it to a string, that I can do. But if there is a built in function that does this for me, I would like to know.</p>
<p>To make it clear, what I would like to write to the file is:</p>
<pre><code>write_to_file("dict = {'one': 1, 'two': 2}")
</code></pre>
http://stackoverflow.com/questions/1900216/is-there-a-function-that-gives-me-a-file-name-without-path1Is there a function that gives me a file name without path?devoured elysium2009-12-14T10:58:50Z2009-12-14T11:00:34Z
<p>I want to turn <code>C:\abc.bmp</code> into <code>abc.bmp</code>, or even better, if possible, in <code>abc</code>. That is easy to do with .NET as there are functions for both goals. Is there anything similar in python?</p>
http://stackoverflow.com/questions/1898305/python-csv-into-dictionary1python csv into dictionaryJohnWong2009-12-14T00:08:45Z2009-12-14T06:15:22Z
<p>I am pretty new to python. I need to create a class that loads csv data into a dictionary.</p>
<p>I want to be able to control the keys and value
So let say the following code, I can pull out worker1.name or worker1.age anytime i want.</p>
<pre><code>class ageName(object):
'''class to represent a person'''
def __init__(self, name, age):
self.name = name
self.age = age
worker1 = ageName('jon', 40)
worker2 = ageName('lise', 22)
#Now if we print this you see that it`s stored in a dictionary
print worker1.__dict__
print worker2.__dict__
#
'''
{'age': 40, 'name': 'jon'}
#
{'age': 22, 'name': 'lise'}
#
'''
#
#when we call (key)worker1.name we are getting the (value)
print worker1.name
#
'''
#
jon
#
'''
</code></pre>
<p>But I am stuck at loading my csv data into keys and value.</p>
<p>[1] I want to create my own keys
worker1 = ageName([name],[age],[id],[gender])</p>
<p>[2] each [name],[age],[id] and [gender] comes from specific a column in a csv data file</p>
<p>I really do not know how to work on this. I tried many methods but I failed. I need some helps to get started on this.</p>
<p>---- Edit
This is my original code</p>
<pre><code>import csv
# let us first make student an object
class Student():
def __init__(self):
self.fname = []
self.lname = []
self.ID = []
self.sport = []
# let us read this file
for row in list(csv.reader(open("copy-john.csv", "rb")))[1:]:
self.fname.append(row[0])
self.lname.append(row[1])
self.ID.append(row[2])
self.sport.append(row[3])
def Tableformat(self):
print "%-14s|%-10s|%-5s|%-11s" %('First Name','Last Name','ID','Favorite Sport')
print "-" * 45
for (i, fname) in enumerate(self.fname):
print "%-14s|%-10s|%-5s|%3s" %(fname,self.lname[i],self.ID[i],self.sport[i])
def Table(self):
print self.lname
class Database(Student):
def __init__(self):
g = 0
choice = ['Basketball','Football','Other','Baseball','Handball','Soccer','Volleyball','I do not like sport']
data = student.sport
k = len(student.fname)
print k
freq = {}
for i in data:
freq[i] = freq.get(i, 0) + 1
for i in choice:
if i not in freq:
freq[i] = 0
print i, freq[i]
student = Student()
database = Database()
</code></pre>
<p>This is my current code (incomplete)</p>
<pre><code>import csv
class Student(object):
'''class to represent a person'''
def __init__(self, lname, fname, ID, sport):
self.lname = lname
self.fname = fname
self.ID = ID
self.sport = sport
reader = csv.reader(open('copy-john.csv'), delimiter=',', quotechar='"')
student = [Student(row[0], row[1], row[2], row[3]) for row in reader][1::]
print "%-14s|%-10s|%-5s|%-11s" %('First Name','Last Name','ID','Favorite Sport')
print "-" * 45
for i in range(len(student)):
print "%-14s|%-10s|%-5s|%3s" %(student[i].lname,student[i].fname,student[i].ID,student[i].sport)
choice = ['Basketball','Football','Other','Baseball','Handball','Soccer','Volleyball','I do not like sport']
lst = []
h = 0
k = len(student)
# 23
for i in range(len(student)):
lst.append(student[i].sport) # merge together
for a in set(lst):
print a, lst.count(a)
for i in set(choice):
if i not in set(lst):
lst.append(i)
lst.count(i) = 0
print lst.count(i)
</code></pre>
http://stackoverflow.com/questions/1897960/how-do-i-check-the-methods-that-an-object-has-in-python1How do I check the methods that an object has, in Python?alex2009-12-13T22:08:46Z2009-12-14T05:15:46Z
<p>For example, a list.</p>
<p>l1 = [1, 5 , 7]
How do I check the methods that it has?</p>
<p>(l1.append, for example)</p>
<p>Or a string...
string.lower(</p>
http://stackoverflow.com/questions/1897531/validating-correct-answer-with-loops-in-python0validating correct answer with loops in python Ray2009-12-13T19:52:22Z2009-12-13T21:13:49Z
<p>Sorry for the non descriptive question I had no idea how to word it.</p>
<p>I'm trying to write a program (GUI) where I ask the users questions and then in return they answer and see if they are correct however when I enter the correct answer it's still showing as being incorrect.</p>
<p>My code looks something like this.</p>
<h1>prompt for question 1</h1>
<pre><code>txtQuestion = Text(Point(5,8), "Question 1")
txtQuestion.setTextColor("red")
txtQuestion.setSize(16)
txtQuestion.setStyle("bold")
txtQuestion.draw(win)
txtAnswer = Text(Point(1.5,4), "Answer 1: ")
txtAnswer.setTextColor(color_rgb(255,127,80))
txtAnswer.setSize(14)
txtAnswer.setStyle("bold")
txtAnswer.draw(win)
txtAnswer2 = Text(Point(1.5,3), "Answer 2: ")
txtAnswer2.setTextColor(color_rgb(255,127,80))
txtAnswer2.setSize(14)
txtAnswer2.setStyle("bold")
txtAnswer2.draw(win)
txtAnswer3 = Text(Point(1.5,2), "Answer 3: ")
txtAnswer3.setTextColor(color_rgb(255,127,80))
txtAnswer3.setSize(14)
txtAnswer3.setStyle("bold")
txtAnswer3.draw(win)
txtAnswer4 = Text(Point(1.5,1), "Answer 4: ")
txtAnswer4.setTextColor(color_rgb(255,127,80))
txtAnswer4.setSize(14)
txtAnswer4.setStyle("bold")
txtAnswer4.draw(win)
txtEnterAn = Text(Point(8,3), "Enter your answer below: ")
txtEnterAn.setTextColor("black")
txtEnterAn.draw(win)
entAnswer = Entry(Point(8,2), 3)
entAnswer.draw(win)
Answer1 = entAnswer.getText()
win.getMouse()
#loop for answer
if Answer1 == "A":
txtCorrect = Text(Point(5,9), "Correct!")
txtCorrect.setTextColor("black")
txtCorrect.draw(win)
else:
txtCorrect = Text(Point(5,9), "Inorrect!")
txtCorrect.setTextColor("black")
txtCorrect.draw(win)
</code></pre>
<p>Now I'm not sure why every time I enter "A" it still shows as incorrect I know in another program I had to float the entAnswer variable but I figured this time I wouldn't have to since it's a string. </p>
<p>I must be overlooking the situation but I can't lay my finger down on it, any help would be appreciated, thanks!</p>
<p>p.s. I didn't put it in with the code but I do have the variables up top initialized such as Answer1 = " " and so forth</p>
http://stackoverflow.com/questions/1896261/how-to-determine-the-datatype-in-python2How to determine the datatype in Python?alex2009-12-13T11:41:30Z2009-12-13T12:47:15Z
<p>astring
('a','tuple')</p>
<p>How do I determine if "x" is a tuple or string?</p>
http://stackoverflow.com/questions/1895026/how-can-i-create-a-regular-expression-in-python0How can I create a regular expression in Python?roaksoax2009-12-12T23:21:02Z2009-12-13T06:15:28Z
<p>I'm trying to create regular expressions to filter certain text from a text file. What I want to filter has this format:</p>
<pre><code>word_*_word.word
</code></pre>
<p>So for example, I would like the python code every match. Sample results would be:</p>
<pre><code>program1_0.0-1_log.build
program2_0.1-3_log.build
</code></pre>
<p>How can I do this?</p>
<p>Thanks a lot for your help</p>
http://stackoverflow.com/questions/823561/what-does-mean-in-python3What does += mean in Python?aksr2009-05-05T06:10:26Z2009-12-12T23:56:35Z
<p>I see code like this for example in Python:</p>
<pre><code> if cnt > 0 and len(aStr) > 1:
while cnt > 0:
aStr = aStr[1:]+aStr[0]
cnt += 1
</code></pre>
<p>What does the <code>+=</code> mean?</p>
http://stackoverflow.com/questions/1891551/network-programming-python-vs-c-for-a-complete-beginner0Network programming: Python vs. C for a complete beginnergsin2009-12-11T23:32:34Z2009-12-12T01:58:17Z
<p>Hi, I am looking for a few pointers, I got pointed to this site.</p>
<p>My primary interest is network programming. I have done quite a bit of reading and experimenting and am familiar with mechanisms of most protocols. Now I want to start writing code. I read introductory stuff on python and grasped it well too. I had just started playing with the python modules, when I met somebody(with a tall reputation) at the local lug meeting who told me that I could always learn python very easily later but C was the language I must know, specially given my interest on network programming. I did some research and thought maybe the guy is right. So I've been with a k&r for 4 weeks now. It didn't intimidate me but I am progressing very very slowly and maybe that's why also slacking a bit. I am posting this because I'm at the stage where it's even worrying me now. I'm always thinking that in python i could be building stuff right now. I know python won't teach me low level things like memory management etc, but my progress is pain-stakingly slow in C.</p>
<p>Question: Should I continue battling with C like i'm now and write some working code in it or switch to python where i'll be at a bit more ease? Will a high level language spoil me too much to come back to C later?</p>
http://stackoverflow.com/questions/1889080/problem-creating-nnn-list-in-python1Problem creating N*N*N list in PythonMatt Boehm2009-12-11T16:10:04Z2009-12-11T21:56:44Z
<p>I'm trying to create a 3-dimensional N*N*N list in Python, like such:</p>
<pre><code>n=3
l = [[[0,]*n]*n]*n
</code></pre>
<p>Unfortunately, this does not seem to properly "clone" the list, as I thought it would:</p>
<pre><code>>>> l
[[[0, 0, 0], [0, 0, 0], [0, 0, 0]], [[0, 0, 0], [0, 0, 0], [0, 0, 0]], [[0, 0, 0], [0, 0, 0], [0, 0, 0]]]
>>> l[0][0][0]=1
>>> l
[[[1, 0, 0], [1, 0, 0], [1, 0, 0]], [[1, 0, 0], [1, 0, 0], [1, 0, 0]], [[1, 0, 0], [1, 0, 0], [1, 0, 0]]]
</code></pre>
<p>What am I doing wrong here?</p>
http://stackoverflow.com/questions/1889385/list-of-dictionaries-in-a-dictionary-in-python-1List of dictionaries, in a dictionary - in PythonTerry Felkrow2009-12-11T16:58:44Z2009-12-11T20:09:19Z
<p>I have a case where I need to construct following structure <strong>programmatically</strong> (yes I am aware of .setdefault and defaultdict but I can not get what I want)</p>
<p>I basically need a dictionary, with a dictionary of dictionaries created within the loop.
At the beginning the structure is completely blank.</p>
<p>structure sample (please note, I want to create an array that has this structure in the code!)</p>
<pre><code>RULE = {
'hard_failure': {
4514 : {
'f_expr' = 'ABC',
'c_expr' = 'XF0',
}
}
}
</code></pre>
<p>pseudo code that needs to create this:</p>
<pre><code>...
self.rules = {}
for row in rows:
a = 'hard_failure'
b = row[0] # 4514
c = row[1] # ABC
d = row[2] # XF0
# Universe collapse right after
self.rules = ????
...
</code></pre>
<p>The code above is obviously not working since I dont know how to do it!</p>
http://stackoverflow.com/questions/1878801/how-to-determine-the-module-a-particular-exception-class-is-defined-in1How to Determine The Module a Particular Exception Class is Defined Indoug2009-12-10T05:31:17Z2009-12-11T17:25:43Z
<p>Note: i edited my Q (in the title) so that it better reflects what i actually want to know. In the original title and in the text of my Q, i referred to the source of the thrown exception; what i meant, and what i should have referred to, as pointed out in one of the high-strung but otherwise helpful response below, is the module <strong>that the exception class is defined in</strong>. This is evidenced by the fact that, again, as pointed out in one of the answers below the answer to the original Q is that the exceptions were thrown from calls to cursor.execute and cursor.next, respectively--which of course, isn't the information you need to write the try/except block.</p>
<p>For instance (the Q has nothing specifically to do with SQLite or the PySQLite module):</p>
<pre><code>from pysqlite2 import dbapi2 as SQ
try:
cursor.execute('CREATE TABLE pname (id INTEGER PRIMARY KEY, name VARCHARS(50)')
except SQ.OperationalError:
print("{0}, {1}".format("table already exists", "... 'CREATE' ignored"))
</code></pre>
#
<pre><code>cursor.execute('SELECT * FROM pname')
while 1:
try:
print(cursor.next())
except StopIteration:
break
</code></pre>
#
<p>i let both snippets error out to see the exception thrown, then coded the try/finally blocks--but that didn't tell me anything about which module the exception class is defined. In my example, there's only a single imported module, but where there are many more, i am interested to know how an experienced pythonista identifies the exception source (search-the-docs-till-i-happen-to-find-it is my current method). </p>
<p>[And yes i am aware there's a nearly identical question on SO--but for C# rather than python, plus if you read the author's edited version, you'll see he's got a different problem in mind.] </p>
http://stackoverflow.com/questions/1887690/simplifying-small-code-example0Simplifying small code example.Orjanp2009-12-11T12:14:34Z2009-12-11T15:02:49Z
<p>Lets pretend I have the following code.</p>
<pre><code>num1 = 33
num2 = 45
num3 = 76
lst = ['one', 'two', 'three']
for item in lst:
if item == 'one':
print num1
elif item == 'two':
print num2
elif item == 'three':
print num3
</code></pre>
<p>Is there a way to make this more elegant when there is no correlation between the list and the print sentence? Meaning, is there a way to get rid of the ifs and elifs?</p>
http://stackoverflow.com/questions/1885300/how-to-join-lists-element-wise-in-python1How to join lists element-wise in Python?alex2009-12-11T01:34:06Z2009-12-11T14:01:06Z
<pre><code>l1 = [4, 6, 8]
l2 = [a, b, c]
</code></pre>
<p>result = <code>[(4,a),(6,b),(8,c)]</code></p>
<p>How do I do that?</p>
http://stackoverflow.com/questions/1887707/python-string-as-hex-terminated-with-null1python string as hex terminated with nullbbb2009-12-11T12:18:22Z2009-12-11T12:23:30Z
<p>I receive strings in their hex format, i.e. <code>s = "0x0ff"</code> or <code>s = "0fd"</code>
how can I check whether the above type of strings are null terminated or not? thanks!</p>