Tagged Questions

0
votes
2answers
41 views

Printing Lines in a File.

So here's the problem I have, I can find the Search Term in my file but at the moment I can only print out the line that the Search Term is in. (Thanks to Questions posted by people earlier =)). But …
0
votes
3answers
120 views

Defining a class

Just a quick question, im defining a class were only a set of integers is used. I cannot use the following datatypes in defining my class: set, frozenset and dictionaries. i need help defining: …
0
votes
8answers
132 views

calling an outside function in python

I am trying to return (execute) a function from another file in an if statement. I have read that the return statement will not work, I was hoping someone would know what statement would allow me to …
1
vote
10answers
218 views

“For” loop first iteration

Greetings pyc-sires and py-ladies, I would like to inquire if there is an elegant pythonic way of executing some function on the first loop iteration. The only possibility I can think of is: first = …
-4
votes
11answers
375 views

What is the most elegant way of converting the string ‘a.pdf’ to ‘a.jpg’ ?

I would like my code to look beautiful Thanks in advance..
0
votes
1answer
67 views

Searching a file.

This is in reference to a question I posted yesterday http://stackoverflow.com/questions/1925284/searching-a-file-in-3-different-ways I just require help now on two things, searching a file and and …
0
votes
5answers
106 views

Specifying chars in python

Hey guys, I need a functions that iterates over all the lines in the file. Here's what I have so far: def LineFeed(file): ret = "" for byte in file: ret = ret + str(byte) if …
-2
votes
8answers
179 views

Boolean Query..

if: x = 0 b = x==0 and i print be it would print 'true' but if i did: x = 0 b = x ==3 and i printed be it would be false. In stead of it printing false how would i take the boolean value …
0
votes
8answers
178 views

Python: List to ints to a single number?

Say i have a several list if ints: x = [['48', '5', '0'], ['77', '56', '0'], ['23', '76', '34', '0']] I want this list to be converted to a single number, but the the single number type is still …
5
votes
3answers
168 views

What is python used for?

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 …
0
votes
2answers
23 views

Use <optgroup> with form.fields.queryset?

Is it possible to set a form's ForeignKey field's queryset so that it will take separate queryset's and output them in <optgroup>'s? Here is what I have: views.py form = …
1
vote
5answers
108 views

concatenate items in dictionary in python using list comprehension

EDIT: Clarified the question a bit How can I get a string from a dictionary with the format key1 = value1 key2 = value2 in a relatively fast way ? (relative to plain concatenation)
0
votes
3answers
36 views

xml.dom.minidom python issue

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 += …
0
votes
5answers
120 views

splitting integer in python?

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?
0
votes
1answer
54 views

Inlines Python/Django technique for objects

I am reading the source code of the Django application blog at git://github.com/nathanborror/django-basic-apps.git. How do you read the following Django code? {% tags_for_object object as tag_list …

1 2 3 4 5 56 next
15 30 50 per page