Password Generator in python | Python Projects for beginners | python for cyber Security

Subscribers:
182
Published on ● Video Link: https://www.youtube.com/watch?v=ZP_j-DSDSFc



Duration: 4:49
25 views
1


Password Generator | Python Projects for beginners | python for cyber Security

Note : Recplace (greater than) and (less than) with their sign/symbol ( Because Youtube donot allow angle brackets in description ) OR You can get this code on github by using github link

Code github Link : https://github.com/ubaidahmadceh/python_projects/blob/main/Strong_Password_Generator.py

code :

import random
letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
numbers = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
symbols = ['!', '#', '$', '%', '&', '(', ')', '*', '+']

print("Welcome to the PyPassword Generator!")
nr_letters = int(input("How many letters would you like in your password?\n"))
nr_symbols = int(input(f"How many symbols would you like?\n"))
nr_numbers = int(input(f"How many numbers would you like?\n"))

password = []

for char in range(1, nr_letters + 1):
password += random.choice(letters)

for char in range(1, nr_symbols + 1):
password += random.choice(symbols)

for char in range(1, nr_numbers + 1):
password += random.choice(numbers)

random.shuffle(password)

password_to_show = ""
for char in password:
password_to_show += char

print(f"Your Password is {password_to_show}")











password generator using python,password generator python,random password generator tkinter python,password generator python tkinter,password generator,random password generator python tkinter,password generator software,python password generator,random password generator,tkinter password generator,tkinter strong password generator app,tkinter strong password generator,how to use for loops in python,password manager,generator,password




Other Videos By UBprogrammer - Hindi


2020-12-10Number Guessing Game Python | Python Random Number Guessing Game with source code | Hindi/Urdu 2020
2020-12-10Install django on Windows10 | How to Install django in Visual Studio code |How to run django project
2020-12-09Python Installation in windows10 in Hindi | Python Path Setup Windows10 | Setup Python in VS code
2020-12-09Ceaser Cipher Text Project in Python | Urdu/Hindi
2020-12-08Screenshot Taker project in Python For Beginners
2020-12-08Screenshot Taker Project GUI in python tkinter
2020-12-08How to build Hangman Game in Python in Hindi | Word Guessing Game Python | Hangman Game Python 2021
2020-12-07sigmoid function in computer vision and deep learning
2020-12-07perceptrone in hindi/urdu | deep learning
2020-12-07Dice Rolling Simulator in python | Python Projects Fpr Beginners | random module in python
2020-12-07Password Generator in python | Python Projects for beginners | python for cyber Security
2020-12-05Rock Papper Scissor Project in Python
2020-12-05Text Based Adventure Game Project in Python
2020-12-04Basic HTML and HTML5: Link to External Pages with Anchor Elements freecodecamp|html a tag href |urdu
2020-12-04Basic HTML and HTML5: Add Images to Your Website freecodecamp | How to use image tag in html |Hindi
2020-12-04Basic HTML and HTML5: Introduction to HTML5 Elements freecodecamp solution | tags in html | Hindi
2020-12-04Basic HTML and HTML5: Delete HTML Elements freecodecamp | How to delete tag in html | remove html
2020-12-04Basic HTML and HTML5: Comment out HTML freecodecamp | How to write comments in html | Html in Hindi
2020-12-04Basic HTML and HTML5: Uncomment HTML freecodecamp | How To Delete Or Remove Comments In Html Code
2020-12-04Basic HTML and HTML5: Fill in the Blank with Placeholder Text
2020-12-04Basic HTML and HTML5: Inform with the Paragraph Element freecodecamp | p tag in html |paragraph html



Tags:
password generator using python
password generator python
random password generator tkinter python
password generator python tkinter
password generator
random password generator python tkinter
password generator software
python password generator
random password generator
tkinter password generator
tkinter strong password generator app
tkinter strong password generator
how to use for loops in python
password manager
generator
password