<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Python Archives - IODocs</title>
	<atom:link href="https://www.iodocs.com/tag/python/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.iodocs.com/tag/python/</link>
	<description>IODocs: Comprehensive How-To Guides, Software Tutorials, and More IODocs.com</description>
	<lastBuildDate>Tue, 22 Jan 2019 22:08:11 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://www.iodocs.com/wp-content/uploads/2019/01/cropped-logoIODOCSretina-32x32.avif</url>
	<title>Python Archives - IODocs</title>
	<link>https://www.iodocs.com/tag/python/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Difference between reshape and resize</title>
		<link>https://www.iodocs.com/difference-reshape-resize/</link>
		
		<dc:creator><![CDATA[rck]]></dc:creator>
		<pubDate>Tue, 24 Oct 2017 13:55:09 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<guid isPermaLink="false">https://iodocs.com/?p=1321</guid>

					<description><![CDATA[<p>When to use reshape and when resize?. Both reshape and resize change the shape of the numpy array; the difference is that using resize will affect the original array while using reshape create a new reshaped instance of the array. This is clarified through an example: Reshape import numpy as np r = np.arange(16) print('original [&#8230;]</p>
<p>The post <a href="https://www.iodocs.com/difference-reshape-resize/">Difference between reshape and resize</a> appeared first on <a href="https://www.iodocs.com">IODocs</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>How to install beautiful soup 4 with python 2.7 on windows 10</title>
		<link>https://www.iodocs.com/install-beautiful-soup-4-python-2-7-windows-10/</link>
		
		<dc:creator><![CDATA[rck]]></dc:creator>
		<pubDate>Sun, 03 Sep 2017 22:08:12 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[Environment Variables]]></category>
		<category><![CDATA[Windows 10]]></category>
		<guid isPermaLink="false">https://iodocs.com/?p=1114</guid>

					<description><![CDATA[<p>You can add system variable by (by doing this you can use easy_install without specifying path) 1 Clicking on Properties of My Computer 2 Then chose Advanced System Settings 3 Click on Advanced Tab 4 Click on Environment Variables 5 From System Variables &#62;&#62;&#62; select variable path. 6 Click edit then add the following lines [&#8230;]</p>
<p>The post <a href="https://www.iodocs.com/install-beautiful-soup-4-python-2-7-windows-10/">How to install beautiful soup 4 with python 2.7 on windows 10</a> appeared first on <a href="https://www.iodocs.com">IODocs</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>How can I open an Excel file in Python</title>
		<link>https://www.iodocs.com/can-open-excel-file-python/</link>
		
		<dc:creator><![CDATA[rck]]></dc:creator>
		<pubDate>Tue, 23 May 2017 15:17:38 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[excel]]></category>
		<guid isPermaLink="false">https://iodocs.com/?p=914</guid>

					<description><![CDATA[<p>Try the xlrd library. From what I can see from your comment, something like the snippet below might do the trick. I&#8217;m assuming here that you&#8217;re just searching one column for the word &#8216;john&#8217;, but you could add more or make this into a more generic function. from xlrd import open_workbook book = open_workbook('simple.xls',on_demand=True) for [&#8230;]</p>
<p>The post <a href="https://www.iodocs.com/can-open-excel-file-python/">How can I open an Excel file in Python</a> appeared first on <a href="https://www.iodocs.com">IODocs</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>How to check if a directory exists and create it if necessary?</title>
		<link>https://www.iodocs.com/check-directory-exists-create-necessary/</link>
		
		<dc:creator><![CDATA[rck]]></dc:creator>
		<pubDate>Tue, 22 Nov 2016 17:54:34 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<guid isPermaLink="false">http://iodocs.com/?p=396</guid>

					<description><![CDATA[<p>I see two answers with good qualities, each with a small flaw, so I will give my take on it: Try os.path.exists, and consider os.makedirs for the creation. if not os.path.exists(directory): os.makedirs(directory) As noted in comments and elsewhere, there&#8217;s a race condition &#8211; if the directory is created between the os.path.exists and the os.makedirs calls, [&#8230;]</p>
<p>The post <a href="https://www.iodocs.com/check-directory-exists-create-necessary/">How to check if a directory exists and create it if necessary?</a> appeared first on <a href="https://www.iodocs.com">IODocs</a>.</p>
]]></description>
		
		
		
			</item>
	</channel>
</rss>
