Practice #15: Building a Password Validation and Strength Checking Program | Python for Beginners

preview_player
Показать описание
In this exercise, you'll write a program that validates password user has chosen against predefined conditions and requirements.
If there is any conditions that user password not met, the program will print it out so that user knows what needs to be fixed.
We'll Python RegEx module and search() function to achieve the result
-------------------------
Python Coding for Beginners
Python Programming for Beginners
Learn Python by Building Projects
Python Exercises and Practical Examples with solutions
Practice Python Online with solution
How to write a Python program
Python Programming Data Structure and Algorithm
Python Problem Solving
Python Game Tutorial
Python Game Programming
Python Game Development
Python Tips and Tricks
Рекомендации по теме
Комментарии
Автор

Try to improve your skill with Python string by practice this problem but in a bit more advanced topics:
- create a username/password pair and save it to a text file
If you are unclear about anything, please leave a comment, or if you have any other solution, please share so we can learn from each other

makeeverydayezday
Автор

Thank you so much for this video, well explained👍

nkem
Автор

I used to use Python string function for checking substring pattern and my code is a bit long. Using RegEx should be a bit better. Thanks buddy👍

tienphongtran
Автор

Hey dude. Thanks for this video, it helped me a lot in my studies! What's the code editor you're using? I found it really cool and couldn't find it on the marketplace. i love the output, clear and not messy

martinomatos
Автор

My next week assignment is to create a OTP (one time password) generator. The password age should be 2 minutes and after that time, password will be expired. Still thinking how to do it. Any idea?

easystuff