active questions tagged python+string - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:40:14Z http://stackoverflow.com/feeds/tag/python+string http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1898656/remove-whitespace-in-python-using-string-whitespace 0 Remove whitespace in Python using string.whitespace Alex 2009-12-14T02:30:34Z 2009-12-14T20:26:51Z <p>Python's string.whitespace is great:</p> <pre><code>&gt;&gt;&gt; string.whitespace '\t\n\x0b\x0c\r ' </code></pre> <p>How do I use this with a string without resorting to manually typing in '\t|\n|... etc for regex? </p> <p>For example, it should be able to turn: "Please \n don't \t hurt \x0b me."</p> <p>into</p> <p>"Please don't hurt me."</p> <p>I'd probably want to keep the single spaces, but it'd be easy enough to just go string.whitespace[:-1] I suppose.</p> http://stackoverflow.com/questions/458550/standard-way-to-embed-version-into-python-package 12 Standard way to embed version into python package? Dimitri Tcaciuc 2009-01-19T18:05:54Z 2009-12-14T06:38:34Z <p>Hey everyone,</p> <p>Is there a standard way to associate version string with a python package in such way that I could do the following?</p> <pre><code>import foo print foo.version </code></pre> <p>I would imagine there's some way to retrieve that data without any extra hardcoding, since minor/major strings are specified in <code>setup.py</code> already. Alternative solution that I found was to have <code>import __version__</code> in my <code>foo/__init__.py</code> and then have <code>__version__.py</code> generated by <code>setup.py</code> </p> <p>Thanks,</p> http://stackoverflow.com/questions/1893816/how-to-override-ord-behaivour-in-python-for-str-childs 2 How to override ord behaivour in Python for str childs? Juanjo Conti 2009-12-12T15:52:03Z 2009-12-12T16:44:49Z <p>I have this class:</p> <pre><code>class STR(str): def __int__(self): return 42 </code></pre> <p>If i use it in the promt like this:</p> <pre><code>&gt;&gt;&gt; a=STR('8') &gt;&gt;&gt; ord(a) 56 &gt;&gt;&gt; int(a) 42 &gt;&gt;&gt; chr(a) '*' </code></pre> <p>that's the behaivour. I'd like to ord(a) be 42. How can I do it? Which method should I override in the str class? Is all this documented anywhere?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1883980/find-the-nth-occurrence-of-substring-in-a-string 3 Find the nth occurrence of substring in a string prestomation 2009-12-10T20:58:50Z 2009-12-11T16:38:40Z <p>This seems like it should be pretty trivial, but I am new at Python and want to do it the most Pythonic way.</p> <p>I want to find the n'th occurrence of a substring in a string.</p> <p>There's got to be something equivalent to what I WANT to do which is </p> <p><code>mystring.find("substring", 2nd)</code></p> <p>How can you achieve this in Python?</p> http://stackoverflow.com/questions/1886660/how-to-do-a-string-replace-in-a-urlencoded-string 1 How to do a string replace in a urlencoded string uswaretech 2009-12-11T08:42:10Z 2009-12-11T11:43:54Z <p>I have a string like <code>x = "http://query.yahooapis.com/v1/public/yql?q=select%20owner%2Curls%20from%20flickr.photos.info%20where%20photo_id%3D'%s'&amp;format=json"</code></p> <p>If I do <code>x % 10</code> that fails as there are <code>%20f</code> etc which are being treated as format strings, so I have to do a string conactination. How can I use normal string replacements here.?</p> http://stackoverflow.com/questions/1885181/how-do-i-un-escape-a-backslash-escaped-string-in-python 2 How do I un-escape a backslash-escaped string in python? Nick 2009-12-11T01:00:01Z 2009-12-11T01:07:36Z <p>Suppose I have a string which is a backslash-escaped version of another string. Is there an easy way, in Python, to unescape the string? I could, for example, do:</p> <pre><code>&gt;&gt;&gt; escaped_str = '"Hello,\\nworld!"' &gt;&gt;&gt; raw_str = eval(escaped_str) &gt;&gt;&gt; print raw_str Hello, world! &gt;&gt;&gt; </code></pre> <p>However that involves passing a (possibly untrusted) string to eval() which is a security risk. Is there a function in the standard lib which takes a string and produces a string with no security implications?</p> http://stackoverflow.com/questions/1876191/explain-python-join 4 Explain Python .join() Matt McCormick 2009-12-09T19:22:04Z 2009-12-09T21:26:13Z <p>I'm pretty new to Python and am completely confused by .join() which I have read is the preferred method for concatenating strings.</p> <p>I try:</p> <pre><code>strid = repr(595) print array.array('c', random.sample(string.ascii_letters, 20 - len(strid))) .tostring().join(strid) </code></pre> <p>and get something like:</p> <pre><code>5wlfgALGbXOahekxSs9wlfgALGbXOahekxSs5 </code></pre> <p>Why does it work like this? Shouldn't the '595' just be automatically appended?</p> http://stackoverflow.com/questions/1874592/pep8-80-characters-big-strings 3 PEP8 - 80 Characters - Big Strings _bravado 2009-12-09T15:20:54Z 2009-12-09T19:32:37Z <p>Due to the sheer annoyance of figuring out what to Google, I've decided to risk what any reputation I had to ask this rather simple question.</p> <p>As PEP8 suggests keeping below the 80 column rule for your python program, how can I abide to that with long strings, i.e.</p> <pre><code>s = "this is my really, really, really, really, really, really, really long string that I'd like to shorten." </code></pre> <p>How would I go about expanding this to the following line, i.e.</p> <pre><code>s = "this is my really, really, really, really, really, really" + "really long string that I'd like to shorten." </code></pre> http://stackoverflow.com/questions/1874712/data-extraction-and-manipulation-in-jython -1 Data extraction and manipulation in jython unknown (google) 2009-12-09T15:35:48Z 2009-12-09T17:37:07Z <p>For a given file </p> <p>For ex : 11 ,345 , sdfsfsfs , 1232 </p> <p>i need to such above records from a file , read 11 to delimiter and strip the white space and store in the another file , similarly 345 to delimiter strip the while space and store in the file. This way i need to do for multiple rows.</p> <p>so finally in the other file the data should look like</p> <p>11,345,sdfsfsfs,1232</p> <p>Please suggest me the way. Thanks for your help. </p> http://stackoverflow.com/questions/1873659/string-conversion 0 String Conversion Kumar 2009-12-09T12:44:18Z 2009-12-09T12:54:12Z <p>Hi i have string </p> <pre><code>s='This is sample' </code></pre> <p>i need to convert like this </p> <pre><code>s='"This is sample"' </code></pre> <p>output=<code>"This is sample"</code></p> <p>how to do this in dynamic<br> Thanks in advance</p> http://stackoverflow.com/questions/1868857/convert-and-merge-strings-into-a-list-in-python 3 Convert and merge strings into a list in Python joaoc 2009-12-08T18:17:58Z 2009-12-08T18:51:50Z <p>In Python I have four strings that include the formatting of a list:</p> <pre><code>line1 ="['a.b.c','b.c.a','c.d.e']" line2 ="['def','efg']" line3 ="['f']" line4 ="['g']" </code></pre> <p>How do I merge them all so I get a valid Python list such as:</p> <pre><code>SumLine = ['a.b.c','b.c.a','c.d.e','def','efg','f','g'] </code></pre> http://stackoverflow.com/questions/1865484/search-a-file-for-a-string-and-execute-a-function-if-string-not-found-in-python 0 Search a file for a string, and execute a function if string not found; in python Nazarius Kappertaal 2009-12-08T08:23:35Z 2009-12-08T08:47:24Z <pre><code>def checkCache(cachedText): for line in open("cache"): if cachedText + ":" in line: print line open("cache").close() else: requestDefinition(cachedText) </code></pre> <p>This code searches each line of a file (cache) for a specific string (cachedText + ":"). </p> <p>If it does not find the <strong>specific string</strong>, within the <strong>entire file</strong> it is meant to call another function (requestNewDefinition(cachedText)).</p> <p>However my above code executes the function for each non-matching line.</p> <p>How can one search a file for a string (cachedText + ":"), and if the string is not found <strong>anywhere in the file</strong>, execute another function?</p> <p>Example Cache:</p> <pre><code>hello:world foo:bar </code></pre> http://stackoverflow.com/questions/1864613/strip-final-0-off-a-python-string 2 Strip final 0 off a python string Nazarius Kappertaal 2009-12-08T04:34:32Z 2009-12-08T05:31:50Z <pre><code>#!/usr/bin/env python import os, sys, subprocess, time while True: print subprocess.call("xsel", shell=True); time.sleep(1); </code></pre> <p>Takes an entry from the clipboard and prints it, every 1 second.</p> <p>Result:</p> <pre><code>copied0 entry0 from0 clipboard0 </code></pre> <p>I do not know why it returns the final 0, but it apparently stops me from using string strip (int has not strip), hence the 0 makes the string an integer?</p> <p>How can one strip final 0 off the python string in the result above?</p> <p>I'm a BASH scripter converting to python.</p> http://stackoverflow.com/questions/1853921/replace-multiple-lines-in-jython 0 Replace Multiple lines in Jython unknown (google) 2009-12-05T23:50:17Z 2009-12-07T19:42:43Z <p>Hi Everyone , </p> <p>I have written a small program to replace a set of characters , but i also want two or more replace command in a single program . </p> <p>Apart from it i also want to add an bracket after random set of characters.</p> <p>This is my Program </p> <pre><code>file_read=open('&lt;%=odiRef.getOption("READ")%&gt;/EXPORT.XML','r') file_write=open('&lt;%=odiRef.getOption("READ")%&gt;/EXPORT_1.XML','w') count_record=file_read.read() while count_record : s=count_record.replace('&lt;Field name="ExeDb"type="java.lang.String"&gt;&lt;![CDATA[S]]&gt;&lt;/Field&gt;','&lt;Field name="ExeDb" type="java.lang.String"&gt;&lt;![CDATA[W]]&gt;&lt;/Field&gt;') file_write.write(s) t=count_record.replace('&lt;Field name="Txt" type="java.lang.String"&gt;&lt;![CDATA[','&lt;Field name="Txt" type="java.lang.String"&gt;&lt;![CDATA[TRIM(') file_write.write(t) count_record=file_read.read() print s file_read.close() file_write.close() </code></pre> <p>As you can see when i try to do with read line i get two lines in the final file.</p> <p>1) I want both the replace command to work but with only single file. </p> <p>2) Also is there is any way to read and write in a single file , i dont know why r+ was not working properly.</p> <p>3) I also want to modify the line </p> <pre><code>t=count_record.replace('&lt;Field name="Txt" type="java.lang.String"&gt;&lt;![CDATA[','&lt;Field name="Txt" type="java.lang.String"&gt;&lt;![CDATA[TRIM(') </code></pre> <p>to somethings like </p> <pre><code>t=count_record.replace('&lt;Field name="Txt" type="java.lang.String"&gt;&lt;![CDATA[','&lt;Field name="Txt" type="java.lang.String"&gt;&lt;![CDATA[TRIM($$$) ') </code></pre> <p>where $$$ represents words or character present in the source File.</p> <p>in short adding ) close bracket at the end , irrespective of any number of words or character after opening bracket .</p> <p>Thanks so much for all your help. </p> http://stackoverflow.com/questions/1838170/what-is-internal-representation-of-string-in-python-3-x 3 What is internal representation of string in Python 3.x sjthebat 2009-12-03T06:57:36Z 2009-12-03T09:25:36Z <p>In Python 3.x, a string consists of items of Unicode ordinal. (See the quotation from the language reference below.) What is the internal representation of Unicode string? Is it UTF-16?</p> <blockquote> <p>The items of a string object are Unicode code units. A Unicode code unit is represented by a string object of one item and can hold either a 16-bit or 32-bit value representing a Unicode ordinal (the maximum value for the ordinal is given in sys.maxunicode, and depends on how Python is configured at compile time). Surrogate pairs may be present in the Unicode object, and will be reported as two separate items.</p> </blockquote> http://stackoverflow.com/questions/1814400/simple-way-to-convert-a-string-to-a-dictionary 4 Simple way to convert a string to a dictionary Morgoth 2009-11-29T02:03:17Z 2009-12-01T21:02:03Z <p>What is the simplest way to convert a string of keyword=values to a dictionary, for example the following string:</p> <pre><code>name="John Smith", age=34, height=173.2, location="US", avatar=":,=)" </code></pre> <p>to the following python dictionary:</p> <pre><code>{'name':'John Smith', 'age':34, 'height':173.2, 'location':'US', 'avatar':':,=)'} </code></pre> <p>The 'avatar' key is just to show that the strings can contain = and , so a simple 'split' won't do. Any ideas? Thanks!</p> http://stackoverflow.com/questions/1817695/python-how-to-get-stringio-writelines-to-accept-unicode-string 2 Python: How to get StringIO.writelines to accept unicode string? rutherford 2009-11-30T03:23:28Z 2009-11-30T10:30:28Z <p>I'm getting a </p> <pre><code>UnicodeEncodeError: 'ascii' codec can't encode character u'\xa3' in position 34: ordinal not in range(128) </code></pre> <p>on a string stored in 'a.desc' below as it contains the '£' character. It's stored in the underlying Google App Engine datastore as a unicode string so that's fine. The cStringIO.StringIO.writelines function is trying seemingly trying to encode it in ascii format:</p> <pre><code>result.writelines(['blahblah',a.desc,'blahblahblah']) </code></pre> <p>How do I instruct it to treat the encoding as unicode if that's the correct phrasing?</p> <p>app engine runs on python 2.5</p> http://stackoverflow.com/questions/1789009/i-am-trying-to-determine-if-a-string-is-a-question-how-can-i-analyze-the-sy 0 I am trying to determine if a string is a Question. How can I analyze the "?" symbol (python) alex 2009-11-24T09:44:19Z 2009-11-24T11:12:02Z <p>This is a question:</p> <pre><code>"Where is the car?" </code></pre> <p>This is NOT a question:</p> <pre><code>"Check this out: http://domain.com/?q=test" </code></pre> <p>How do I write a function to analyze a string so that we know for sure it is a question and not <strong>part of a URL</strong>? </p> http://stackoverflow.com/questions/1751949/python-equivalent-of-rubys-stringscanner 1 Python equivalent of ruby's StringScanner? Ian P 2009-11-17T21:31:08Z 2009-11-17T22:33:40Z <p>Is there a python class equivalent to ruby's <a href="http://ruby-doc.org/core/classes/StringScanner.html" rel="nofollow">StringScanner class</a>? I Could hack something together, but i don't want to reinvent the wheel if this already exists.</p> http://stackoverflow.com/questions/1749283/remove-one-char-from-a-string 0 Remove one char from a string n00bie 2009-11-17T14:31:06Z 2009-11-17T16:22:24Z <p>Hi Alls,</p> <p>I'd like to remove one char from a string like this:</p> <pre><code>string = "ASDFVGHFJHRSFDZFDJKUYTRDSEADFDHDS" print len(string) </code></pre> <p>(33)</p> <p>So i would like to remove one random char in this string, and then have a len = 32 What's the best way to do so ?</p> <p>EDIT: thanks for your answers, but i forgot something: i'd like to print the char removed; Using Anurag Uniyal technique ?</p> <p>Thanks !</p> http://stackoverflow.com/questions/1706198/python-how-to-ignore-comment-lines-when-reading-in-a-file 2 Python: How to ignore #comment lines when reading in a file. John 2009-11-10T07:36:44Z 2009-11-17T00:27:07Z <p>In Python, I have just read a line form a text file and I'd like to know how to code to ignore comments with a hash # at the beginning of the line.</p> <p>I think it should be something like this: </p> <pre><code>for if line !contain # then ...process line else end for loop </code></pre> <p>But I'm new to Python and I don't know the syntax</p> http://stackoverflow.com/questions/1742937/convert-float-to-string-with-cutting-zero-decimals-afer-point-in-python 0 Convert float to string with cutting zero decimals afer point in Python hydrargyrum 2009-11-16T15:35:45Z 2009-11-16T15:55:39Z <p>Hi all!</p> <p>I am feeling difficult to convert a float to string in the following manner:</p> <pre><code>20.02 --&gt; 20.02 20.016 --&gt; 20.02 20.0 --&gt; 20 </code></pre> <p>Seems "%g" format is the best for that, but I am getting strange results:</p> <pre><code>In [30]: "%.2g" % 20.03 Out[30]: '20' In [31]: "%.2g" % 20.1 Out[31]: '20' In [32]: "%.2g" % 20.3 Out[32]: '20' In [33]: "%.2g" % 1.2 Out[33]: '1.2' In [34]: "%.2g" % 1.0 Out[34]: '1' In [35]: "%.2g" % 2.0 Out[35]: '2' In [36]: "%.2g" % 2.2 Out[36]: '2.2' In [37]: "%.2g" % 2.25 Out[37]: '2.2' In [38]: "%.2g" % 2.26 Out[38]: '2.3' In [39]: "%.3g" % 2.26 Out[39]: '2.26' In [40]: "%.3g" % 2.25 Out[40]: '2.25' In [41]: "%.3g" % 20.02 Out[41]: '20' In [42]: "%.3g" % 20.016 Out[42]: '20' In [43]: "%.20g" % 20.016 Out[43]: '20.015999999999998238' </code></pre> <p>The only way I know at the time is checking whether the number is int and apply "%d" instead of "%f" formatting - this is too complicated, I think. Does anyboidy know why the things above are hapenning? How to do this simpler?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1739913/what-is-the-max-length-of-a-python-string 2 What is the max length of a python string? rutherford 2009-11-16T03:37:28Z 2009-11-16T03:42:33Z <p>If it is environment-independent, what is the theoretical maximum number of characters in a python string?</p> <p>Also if it differs with version number I'd like to know it for python 2.5.2</p> http://stackoverflow.com/questions/1738452/count-the-number-of-occurences-of-letters-in-a-python-string 0 Count the number of occurences of letters in a Python string unknown (google) 2009-11-15T18:58:15Z 2009-11-15T19:29:17Z <p>So I got a DNA sequence.</p> <pre><code>ACCAGAGCGGCACAGCAGCGACATCAGCACTAGCACTAGCATCAGCATCAGCATCAGC CTACATCATCACAGCAGCATCAGCATCGACATCAGCATCAGCATCAGCATCGACGACT ACACCCCCCCCGGTGTGTGTGGGGGGTTAAAAATGATGAGTGATGAGTGAGTTGTGTG CTACATCATCACAGCAGCATCAGCATCGACATCAGCATCAGCATCAGCATCGACGACT TTCTATCATCATTCGGCGGGGGGATATATTATAGCGCGCGATTATTGCGCAGTCTACG TCATCGACTACGATCAGCATCAGCATCAGCATCAGCATCGACTAGCATCAGCTACGAC </code></pre> <p>I need to count the bases.</p> <p>Also for some reason it can sometimes it can alternate between upper or lowercase in the same string.</p> http://stackoverflow.com/questions/1719865/classify-array-of-strings-based-on-commonalities 1 Classify array of strings based on commonalities Ramya 2009-11-12T04:22:55Z 2009-11-13T10:29:02Z <p>I have huge list (200000) of strings (multi word). I want to group these strings based on comman array of word match among these strings. I cant think of a low computation time algorithm for this</p> <p>"<strong>AB 500</strong>"<br> "Bus <strong>AB 500</strong>"<br> "<strong>News CA</strong>"<br> "<strong>News CA</strong> BLAH"</p> <p>My plan was<br> a. Tokenize them to words.<br> b. Create a global array tokens<br> c. Compare those strings with common tokens.</p> <p>As you guessed this does not help. Can you suggest an algorithm for this? I am writing this in python..</p> http://stackoverflow.com/questions/1713876/how-to-split-a-string-to-what-i-want-in-python 0 how to split a string to what I want in python Charlie Epps 2009-11-11T08:46:46Z 2009-11-11T09:00:40Z <p>I have string ling like this:</p> <pre><code>'Toy Stroy..(II) (1995)' </code></pre> <p>I want to split the line to two parts like this:</p> <pre><code>['Toy Story..(II)','1995'] </code></pre> <p>How can I do it? thanks</p> http://stackoverflow.com/questions/1709110/what-does-u-mean-in-a-list 1 What does 'u' mean in a list? _bravado 2009-11-10T16:11:41Z 2009-11-10T16:32:11Z <p>This is the first time I've came across this. Just printed a list and each element seems to have a <code>u</code> in front of it i.e. </p> <pre><code>[u'hello', u'hi', u'hey'] </code></pre> <p><strong>What does it mean and why would a list have this in front of each element?</strong></p> <p>As I don't know how common this is, if you'd like to see how I came across it, I'll happily edit the post.</p> http://stackoverflow.com/questions/1664861/how-to-create-an-image-from-a-string-in-python 0 How to create an image from a string in python Adam A. 2009-11-03T02:20:39Z 2009-11-03T06:32:55Z <p>Hi,</p> <p>I'm currently having trouble creating an image from a binary string of data in my Python program. I receive the binary data via a socket but when I try the methods I read about on <a href="http://www.pythonware.com/library/pil/handbook/introduction.htm" rel="nofollow">here</a> like this:</p> <pre><code>buff = StringIO.StringIO() #buffer where image is stored #Then I concatenate data by doing a buff.write(data) #the data from the socket im = Image.open(buff) </code></pre> <p>I get an exception to the effect of "image type not recognized". I know that I am receiving the data correctly because if I write the image to a file and then open a file it works:</p> <pre><code>buff = StringIO.StringIO()#buffer where image is stored buff.write(data) #data is from the socket output = open("tmp.jpg", 'wb') output.write(buff) output.close() im = Image.open("tmp.jpg") im.show() </code></pre> <p>I figure I am probably doing something wrong in using the StringIO class but I'm not sure. Thanks for the help in advance!</p> http://stackoverflow.com/questions/1645384/insert-string-in-the-middle-of-a-file-given-a-file-object 0 insert string in the middle of a file given a file object leon 2009-10-29T17:40:09Z 2009-10-29T18:45:08Z <p>I am working on a problem and got stuck at a wall</p> <p>I have a (potentially large) set of text files, and I need to apply a sequence of filters and transformations to it and export it to some other places.</p> <p>so I roughly have</p> <pre><code>def apply_filter_transformer(basepath = None, newpath = None, fts= None): #because all the raw studies in basepath should not be modified, so I first cp all to newpath for i in listdir(basepath): file(path.join(newpath, i), "wb").writelines(file(path.join(basepath, i)).readlines()) for i in listdir(newpath): fileobj = open(path.join(newpath, i), "r+") for fcn in fts: fileobj = fcn(fileobj) if fileobj is not None: fileobj.writelines(fileobj.readlines()) try: fileobj.close() except: print i, "at", fcn pass def main(): apply_filter_transformer(path.join(pardir, pardir, "studies"), path.abspath(path.join(pardir, pardir, "filtered_studies")), [ #transformer_addMemo, filter_executable, transformer_identity, filter_identity, ]) </code></pre> <p>and fts in apply_filter_transformer is a list of function that takes a python file object and return a python file object. The problem that I went into is that when I want to insert strings into a text object, I get uninformative error and got stuck for all morning.</p> <pre><code>def transformer_addMemo(fileobj): STYLUSMEMO =r"""hellow world""" study = fileobj.read() location = re.search(r"&lt;/BasicOptions&gt;", study) print fileobj.name print fileobj.mode fileobj.seek(0) fileobj.write(study[:location.end()] + STYLUSMEMO + study[location.end():]) return fileobj </code></pre> <p>and this gives me </p> <pre><code>Traceback (most recent call last): File "E:\mypy\reg_test\src\preprocessor\preprocessor.py", line 292, in &lt;module&gt; main() File "E:\mypy\reg_test\src\preprocessor\preprocessor.py", line 288, in main filter_identity, File "E:\mypy\reg_test\src\preprocessor\preprocessor.py", line 276, in apply_filter_transformer fileobj.writelines(fileobj.readlines()) IOError: [Errno 0] Error </code></pre> <p>If anyone can give me more info on the error, I would appreciate very very much.</p> http://stackoverflow.com/questions/538666/python-format-timedelta-to-string 1 Python format timedelta to string mawcs 2009-02-11T20:40:43Z 2009-10-29T14:23:22Z <p>Hi, I'm a python newbie (2 weeks) and I'm having trouble formatting a datetime.timedelta object.</p> <p>Here's what I'm trying to do. I have a list of objects and one of the members of the class of the object is a timedelta object that shows the duration of an event. I would like to display that duration in the format of hours:minutes.</p> <p>I have tried a variety of methods for doing this and I'm having difficulty. My current approach is to add methods to the class for my objects that return hours and minutes. I can get the hours by dividing the timedelta.seconds by 3600 and rounding it. I'm having trouble with getting the remainder seconds and converting that to minutes.</p> <p>By the way, I'm using Google AppEngine with DJango Templates for presentation.</p> <p>If anyone can help or knows of a better way to resolve this, I would be very happy.</p> <p>Thanks,</p>