<?xml version="1.0" encoding="iso-8859-1"?><!-- Copyright (C) 2000-2013 - Developer Shed, LLC. -->
<rss version="2.0">
<channel>
<title>Dev Shed - Python Programming Forum</title>
<link>http://forums.devshed.com/python-programming-11/</link>
<description>Dev Shed Forums - Programming Help and Tutorials for all development technologies - RSS Feeds</description>
<language>en-us</language>
<lastBuildDate>Sat, 18 May 2013 21:33:31 -0400</lastBuildDate>
<pubDate>Sat, 18 May 2013 21:33:31 -0400</pubDate>
<item><title>Dev Shed Forums  - How can i write two sys.argv to a file  ( a name and a number)</title>
<pubDate>Fri, 17 May 2013 16:54:41 -0400</pubDate>
<link>http://forums.devshed.com/python-programming-11/how-can-i-write-two-sys-argv-to-a-file-945356.html</link>
<description><![CDATA[Date: May 17th, 2013 11:48 PM - b49P23TIvg - Untitled
Post: Assuming you mean that each new entry should be appended to file1, open the file in append mode.
open('file1','a')

And you want me to explain
FILE.write('\n'.format(*sys.argv))
?

Firstly, it's in a context indicated by the &quot;w...]]></description>
<guid>http://forums.devshed.com/python-programming-11/how-can-i-write-two-sys-argv-to-a-file-945356.html</guid>
</item>
<item><title>Dev Shed Forums  - Days between dates using &quot;YYYY,MM,DD&quot; as the format and no datetime</title>
<pubDate>Fri, 17 May 2013 17:38:13 -0400</pubDate>
<link>http://forums.devshed.com/python-programming-11/days-between-dates-using-yyyy-mm-dd-as-the-format-945358.html</link>
<description><![CDATA[Date: May 18th, 2013 11:31 AM - jomiscli - Untitled
Post: Yeah with Udactiy the functions have to be named specifically or the code checker will not accept it, so naming the function isLeapYear() was a required name.

Thank you for the rewrite....]]></description>
<guid>http://forums.devshed.com/python-programming-11/days-between-dates-using-yyyy-mm-dd-as-the-format-945358.html</guid>
</item>
<item><title>Dev Shed Forums  - Parse .m3u file</title>
<pubDate>Fri, 17 May 2013 21:25:48 -0400</pubDate>
<link>http://forums.devshed.com/python-programming-11/parse-m3u-file-945363.html</link>
<description><![CDATA[Date: May 17th, 2013 10:31 PM - b49P23TIvg - This may be close enough to what you need.
Post: import pprint

with open('a') as INF:
    MUSIC_FILES = [LINE.strip() for LINE in INF.readlines() if not LINE.startswith('#')]

pprint.pprint(MUSIC_FILES)...]]></description>
<guid>http://forums.devshed.com/python-programming-11/parse-m3u-file-945363.html</guid>
</item>
<item><title>Dev Shed Forums  - Timing Python code</title>
<pubDate>Sat, 18 May 2013 02:05:16 -0400</pubDate>
<link>http://forums.devshed.com/python-programming-11/timing-python-code-945374.html</link>
<description><![CDATA[Date: May 18th, 2013 03:24 AM - dariyoosh - Untitled
Post: Take a look at

 time module:  Time access and conversions

timeit module: Measure execution time of small code snippets...]]></description>
<guid>http://forums.devshed.com/python-programming-11/timing-python-code-945374.html</guid>
</item>
<item><title>Dev Shed Forums  - SSH commands in Python Script</title>
<pubDate>Sat, 18 May 2013 03:49:52 -0400</pubDate>
<link>http://forums.devshed.com/python-programming-11/ssh-commands-in-python-script-945383.html</link>
<description><![CDATA[Date: May 18th, 2013 09:45 AM - b49P23TIvg - Untitled
Post: def compute_command_string(arguments):
# statements to make the command string
# return hairy_command_string

command = compute_command_string(*args,**kwargs)
os.system(command)...]]></description>
<guid>http://forums.devshed.com/python-programming-11/ssh-commands-in-python-script-945383.html</guid>
</item>
<item><title>Dev Shed Forums  - Robot to read and say RSS feeds</title>
<pubDate>Sat, 18 May 2013 08:28:36 -0400</pubDate>
<link>http://forums.devshed.com/python-programming-11/robot-to-read-and-say-rss-feeds-945395.html</link>
<description><![CDATA[Date: May 18th, 2013 08:28 AM - yhmmc - Robot to read and say RSS feeds
Post: I would like for my Robot to read and say RSS feeds. I have looked in many places , but do not see a place that illustrates this. Any information or a shove in the right direction would be nice.

Thanks in Advance.

M...]]></description>
<guid>http://forums.devshed.com/python-programming-11/robot-to-read-and-say-rss-feeds-945395.html</guid>
</item>
<item><title>Dev Shed Forums  - Beginners difficulty with return</title>
<pubDate>Sat, 18 May 2013 08:40:41 -0400</pubDate>
<link>http://forums.devshed.com/python-programming-11/beginners-difficulty-with-return-945396.html</link>
<description><![CDATA[Date: May 18th, 2013 11:37 AM - SimonWr - Thankyou
Post: Mek
Thats really helpful - thank you
I will try to get to grips with code tags
it was a bit disappointing to see tabulation disappear when I finished edit.
I am a 52 year old who did not try programming for the first 50 years.
I am worki...]]></description>
<guid>http://forums.devshed.com/python-programming-11/beginners-difficulty-with-return-945396.html</guid>
</item>
<item><title>Dev Shed Forums  - Python to C++ ?</title>
<pubDate>Sat, 18 May 2013 10:36:00 -0400</pubDate>
<link>http://forums.devshed.com/python-programming-11/python-to-c-945399.html</link>
<description><![CDATA[Date: May 18th, 2013 02:22 PM - b49P23TIvg - Untitled
Post: First of all, the source indentation is part of python syntax; it delimits the blocks.  Please follow the instructions at my signature for your future python posts.

Next, the piece of code is a generator, meaning it needs to preserve st...]]></description>
<guid>http://forums.devshed.com/python-programming-11/python-to-c-945399.html</guid>
</item>
</channel>
</rss>
