<?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 &#8211; WebDevStudy</title>
	<atom:link href="https://www.webdevstudy.com/tag/python/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.webdevstudy.com</link>
	<description>software engineer development experience</description>
	<lastBuildDate>Sat, 08 Jul 2023 02:06:31 +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.webdevstudy.com/wp-content/uploads/2023/04/logo-150x150.png</url>
	<title>Python &#8211; WebDevStudy</title>
	<link>https://www.webdevstudy.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Get Rows or Columns with NaN (null) Values in  Pandas DataFrame</title>
		<link>https://www.webdevstudy.com/2023/07/08/how-to-get-rows-or-columns-with-nan-null-values-in-pandas-dataframe/</link>
					<comments>https://www.webdevstudy.com/2023/07/08/how-to-get-rows-or-columns-with-nan-null-values-in-pandas-dataframe/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 08 Jul 2023 02:06:30 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=276</guid>

					<description><![CDATA[Let’s learn how to get rows or columns with one or more NaN values in a Pandas DataFrame. 1. Get rows with NaN You can use isna() or isnull() to get all rows with NaN values. isnull()&#160;is an&#160;alias of&#160;isna(). Many prefer&#160;isna()&#160;for semantic consistency (e.g.&#160;np.isnan(),&#160;dropna(), and&#160;fillna()&#160;all handle missing values). 2. Get columns with&#160;NaN Let’s retrieve all rows of all columns that contain a&#160;NaN&#160;value. [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/08/how-to-get-rows-or-columns-with-nan-null-values-in-pandas-dataframe/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How can I Add List to Set in Python</title>
		<link>https://www.webdevstudy.com/2023/07/06/how-can-i-add-list-to-set-in-python/</link>
					<comments>https://www.webdevstudy.com/2023/07/06/how-can-i-add-list-to-set-in-python/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 06 Jul 2023 03:29:44 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=270</guid>

					<description><![CDATA[We have several ways of adding the elements of a list to a set in Python. If we want to add the elements of curr_list into curr_set to create a set of { 1, 2, 3 }. if we want to add the entire list as a single element to the set, we’ll have to first convert it to a tuple. To [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/06/how-can-i-add-list-to-set-in-python/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to use Enumerate in Python?</title>
		<link>https://www.webdevstudy.com/2023/06/24/how-to-use-enumerate-in-python/</link>
					<comments>https://www.webdevstudy.com/2023/06/24/how-to-use-enumerate-in-python/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 24 Jun 2023 00:36:30 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=168</guid>

					<description><![CDATA[How to use Enumerate in Python? You’ve been writing for-loops like this: But you want print the&#160;index of each element&#160;in the loop, so you instinctively go to this, outputting the following: The printed statement follows the&#160;f-String syntax, a new string formatting technique released in Python 3.6. So this method functions as intended, but we actually don’t have [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/06/24/how-to-use-enumerate-in-python/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Append to a File or Create a file in python if it does not already exist?</title>
		<link>https://www.webdevstudy.com/2023/06/23/how-to-append-to-a-file-or-create-a-file-in-python-if-it-does-not-already-exist/</link>
					<comments>https://www.webdevstudy.com/2023/06/23/how-to-append-to-a-file-or-create-a-file-in-python-if-it-does-not-already-exist/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 23 Jun 2023 05:39:15 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=160</guid>

					<description><![CDATA[Let’s see at different methods for creating and appending to a file in Python using functions such as os.path.exists() and open(). 1. Checking if a file exists with os.path.exists() The os.path.exists() function allows you to check if a file exists before trying to open it. If the file does not exist, you can create it with the open() function with w mode. If the file [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/06/23/how-to-append-to-a-file-or-create-a-file-in-python-if-it-does-not-already-exist/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>how to sleep in python code &#8211; adding delays</title>
		<link>https://www.webdevstudy.com/2023/06/23/how-to-sleep-in-python-code-adding-delays/</link>
					<comments>https://www.webdevstudy.com/2023/06/23/how-to-sleep-in-python-code-adding-delays/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 23 Jun 2023 05:27:02 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=156</guid>

					<description><![CDATA[Python provides some sleep functions that allow you to add delays to your code. Let’s see the&#160;time.sleep(),&#160;asyncio.sleep(), and&#160;sched.scheduler.enter()&#160;functions to achieve this functionality. 1. Using&#160;time.sleep() The time.sleep() function is a easy way to add delays to your Python code. It takes in one argument, the number of seconds to sleep, which can be a decimal or integer value. [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/06/23/how-to-sleep-in-python-code-adding-delays/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Sleep in Python (adding delays)</title>
		<link>https://www.webdevstudy.com/2023/04/10/how-to-sleep-in-python-adding-delays/</link>
					<comments>https://www.webdevstudy.com/2023/04/10/how-to-sleep-in-python-adding-delays/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Mon, 10 Apr 2023 07:36:38 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=29</guid>

					<description><![CDATA[Python provides several sleep functions that allow us to add delays to our code. Let’s explore the time.sleep(), asyncio.sleep(), and sched.scheduler.enter() functions to achieve this functionality. 1. Using&#160;time.sleep() The&#160;time.sleep()&#160;function is a fairly straightforward way to add delays to our Python code. It takes in one argument, the number of seconds to sleep, which can be a decimal or integer [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/04/10/how-to-sleep-in-python-adding-delays/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Append to a File or Create If Not Exists in Python</title>
		<link>https://www.webdevstudy.com/2023/04/10/how-to-append-to-a-file-or-create-if-not-exists-in-python/</link>
					<comments>https://www.webdevstudy.com/2023/04/10/how-to-append-to-a-file-or-create-if-not-exists-in-python/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Mon, 10 Apr 2023 06:44:18 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=21</guid>

					<description><![CDATA[Let’s take a look at different methods for creating and appending to a file in Python using functions such as os.path.exists() and open(). 1. Checking if a file exists with&#160;os.path.exists() The&#160;os.path.exists()&#160;function allows us to check if a file exists before trying to open it. If the file does not exist, we can create it with the&#160;open()&#160;function and&#160;w&#160;mode. If [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/04/10/how-to-append-to-a-file-or-create-if-not-exists-in-python/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
