<?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>get current time Archives - Codeplaners</title>
	<atom:link href="https://codeplaners.com/tag/get-current-time/feed/" rel="self" type="application/rss+xml" />
	<link>https://codeplaners.com/tag/get-current-time/</link>
	<description>Code Solution</description>
	<lastBuildDate>Tue, 05 Oct 2021 00:58:06 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>

<image>
	<url>https://codeplaners.com/wp-content/uploads/2020/09/cropped-favicon-social-32x32.png</url>
	<title>get current time Archives - Codeplaners</title>
	<link>https://codeplaners.com/tag/get-current-time/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Get Current Time In Hours Minutes Seconds In Python</title>
		<link>https://codeplaners.com/get-current-time-in-hours-minutes-seconds-in-python/</link>
					<comments>https://codeplaners.com/get-current-time-in-hours-minutes-seconds-in-python/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 05 Oct 2021 00:58:06 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[get current time]]></category>
		<category><![CDATA[python]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1319</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you get current time in hours minutes seconds in python. This article will give you simple example of get current time in hours minutes seconds in python. you will get current time in hours minutes seconds in python. So let’s follow few step to create example of get &#8230; <a href="https://codeplaners.com/get-current-time-in-hours-minutes-seconds-in-python/" class="more-link">Continue reading<span class="screen-reader-text"> "Get Current Time In Hours Minutes Seconds In Python"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/get-current-time-in-hours-minutes-seconds-in-python/">Get Current Time In Hours Minutes Seconds In Python</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Dev,</p>
<p>Today, i we will show you get current time in hours minutes seconds in python. This article will give you simple example of get current time in hours minutes seconds in python. you will get current time in hours minutes seconds in python. So let’s follow few step to create example of get current time in hours minutes seconds in python.</p>
<h3 class="step_code">Example 1</h3>
<pre class="brush: python; title: ; notranslate">
import time

// get current time in hour, minute, seconds
currentTime = time.strftime(&quot;%H:%M:%S&quot;)
print(currentTime)
</pre>
<p><strong>Output:</strong></p>
<pre class="brush: python; title: ; notranslate">
16:06:41
</pre>
<h3 class="step_code">Example 2</h3>
<pre class="brush: python; title: ; notranslate">
# from datetime import datetime

// get current date and time
currentTimeDate = datetime.now()

// get only time
currentTime = currentTimeDate.strftime('%H:%M:%S')
print(currentTime)
</pre>
<p><strong>Output:</strong></p>
<pre class="brush: python; title: ; notranslate">
16:06:41
</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/get-current-time-in-hours-minutes-seconds-in-python/">Get Current Time In Hours Minutes Seconds In Python</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/get-current-time-in-hours-minutes-seconds-in-python/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
