<?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>PasswordChecker Archives - IT-Tutorial</title>
	<atom:link href="https://it-tutorial.info/tag/passwordchecker/feed/" rel="self" type="application/rss+xml" />
	<link>https://it-tutorial.info/tag/passwordchecker/</link>
	<description>For educational purpose only</description>
	<lastBuildDate>Mon, 06 May 2024 09:20:07 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
<site xmlns="com-wordpress:feed-additions:1">172715145</site>	<item>
		<title>Create a simple python password checker.</title>
		<link>https://it-tutorial.info/create-a-simple-python-password-checker/</link>
					<comments>https://it-tutorial.info/create-a-simple-python-password-checker/#comments</comments>
		
		<dc:creator><![CDATA[Ryan123]]></dc:creator>
		<pubDate>Fri, 19 Feb 2021 22:05:39 +0000</pubDate>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[PasswordChecker]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Python Basics]]></category>
		<category><![CDATA[Quick project]]></category>
		<guid isPermaLink="false">https://epic-thompson.185-48-117-223.plesk.page/?p=460</guid>

					<description><![CDATA[<p>Today you will learn how to make a simple password checker in python. This is a perfect project for any beginner. What are the minimum requirments for a good and secure password? If you liked this post and learned something new I would really appreciate it if you check out some of my other posts.</p>
<p>The post <a href="https://it-tutorial.info/create-a-simple-python-password-checker/">Create a simple python password checker.</a> appeared first on <a href="https://it-tutorial.info">IT-Tutorial</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Today you will learn how to make a simple password checker in python. This is a perfect project for any beginner. </p>



<p>What are the minimum requirments for a good and secure password?</p>



<ul class="wp-block-list">
<li>Password length (min 8 characters)</li>



<li>Numbers (1234)</li>



<li>Upper cases (ABCD)</li>



<li>Lower case (abcd)</li>



<li>Special symbol (!@#$%)</li>
</ul>



<pre class="wp-block-code"><code>def password_check(passwd): 
      
    SpecialSym =&#91;'!', '@', '#', '$', '%', '^', '&amp;', '*'] 
    val = True
      
    if len(passwd) &lt; 8: 
        print("Lengtt should be atleast 8 characters") 
        val = False
          
    if len(passwd) &gt; 20: 
        print("Password should not exeed 20 characters") 
        val = False
          
    if not any(char.isdigit() for char in passwd): 
        print('Password should contain a digit') 
        val = False
          
    if not any(char.isupper() for char in passwd): 
        print("Password should contain atleast 1 upper case") 
        val = False
          
    if not any(char.islower() for char in passwd): 
        print("Password should contain atleast 1 lower case") 
        val = False
          
    if not any(char in SpecialSym for char in passwd): 
        print("Password should contain 1 or more symbols like: !@$") 
        val = False
    if val: 
        return val 
   
def main(): 
    passwd = input("Enter your password : ")
      
    if (password_check(passwd)): 
        print("Password is valid") 
    else: 
        print("Invalid Password !!") 
                
if __name__ == '__main__': 
    main() 
</code></pre>



<p>If you liked this post and learned something new I would really appreciate it if you check out some of my other <a href="https://it-tutorial.info">posts. </a></p>
<p>The post <a href="https://it-tutorial.info/create-a-simple-python-password-checker/">Create a simple python password checker.</a> appeared first on <a href="https://it-tutorial.info">IT-Tutorial</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://it-tutorial.info/create-a-simple-python-password-checker/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">460</post-id>	</item>
	</channel>
</rss>
