Categories > Coding > Python >

[Release] Python Password Generator

Entity

Usability >> modern

vip

Posts: 416

Threads: 40

Joined: May, 2022

Reputation: 51

Posted

Hello everyone!

 

I want to learn different languages ​​so I will start with simple tasks. I did it with the information I read from the forums, there are things like character.

 

Anyways code:

 

import string
import random
charecter = string.ascii_letters
password = []
for i in range(10): #Lenght
    randomchar = random.choice(charecter)
    password.append(randomchar)
print("You Password is" + "".join(password))

  • 1

Posts: 59

Threads: 12

Joined: Feb, 2020

Reputation: 2

Replied

@PasswordAcc he is new bruh

  • 0

want something? add me on disccord !Spl||HasH!#7562

Posts: 2014

Threads: 198

Joined: Apr, 2021

Reputation: 16

Replied

Not bad, vouch

  • 0

Random quote here...

Entity

Usability >> modern

vip

Posts: 416

Threads: 40

Joined: May, 2022

Reputation: 51

Replied

@67078thanks dude! :)

  • 0

Murz

PixelPenguin

Posts: 240

Threads: 20

Joined: Jul, 2021

Reputation: 29

Replied

absolute poggers

  • 0

 

Ty for rep: Swiney, Byoke, Lion, Locust, Waves, Weeb, Nickk, darkn, Atari, CubeFaces, Lux14, Rice, Delta, Syraxes, Aeon, Jordan, Pluto, and Hiroku!

P.S, I like cats better too!

Entity

Usability >> modern

vip

Posts: 416

Threads: 40

Joined: May, 2022

Reputation: 51

Replied

@Murz lol thanks dude! I am new in the python

 

  • 0

Murz

PixelPenguin

Posts: 240

Threads: 20

Joined: Jul, 2021

Reputation: 29

Replied

@Entity well just keep it up :)

  • 0

 

Ty for rep: Swiney, Byoke, Lion, Locust, Waves, Weeb, Nickk, darkn, Atari, CubeFaces, Lux14, Rice, Delta, Syraxes, Aeon, Jordan, Pluto, and Hiroku!

P.S, I like cats better too!

Jisll

UI Maker

Posts: 29

Threads: 0

Joined: Feb, 2021

Reputation: 5

Replied

This is a good start to learn this language. What I can recommend is to add a string.digits to the password generator to make it more complex.

  • 0

https://cdn.discordapp.com/attachments/927291995947413515/1092728981884780594/jisll.png

Entity

Usability >> modern

vip

Posts: 416

Threads: 40

Joined: May, 2022

Reputation: 51

Replied

@Jisll thanks i am trying to improve myself a little more in python

  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )