<주어진 조건>
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"))
<생성>
1) 쉬운 버전
password = ""
#리스트를 문자열로 변환
for char in range(1, nr_letters + 1):
password += random.choice(letters)
#.choice = 리스트 내의 요소 중 하나를 랜덤으로 선택하는 공식
for char in range(1, nr_symbols + 1):
password += random.choice(symbols)
for char in range(1, nr_numbers + 1):
password += random.choice(numbers)
print(password)
2) 어려운 버전 (랜덤으로 문자열 섞기)
password_list = []
for char in range(1, nr_letters + 1):
password_list.append(random.choice(letters))
#: .append 공식을 사용하여 리스트 마지막에 요소를 넣어준다.
##1번의 풀이와 동일하게 password_list += random.choice(letters)를 사용하여도 된다.
for char in range(1, nr_symbols + 1):
password_list += random.choice(symbols)
for char in range(1, nr_numbers + 1):
password_list += random.choice(numbers)
random.shuffle(password_list)
#리스트 내의 요소를 랜덤으로 섞어준다.
password = ""
for char in password_list:
password += char
#리스트를 문자열로 변환한다.
print(f"Your password is: {password}")
'python' 카테고리의 다른 글
[python] #행맨 게임 (1) - 입력한 값이 문자열에 존재하는지 확인하기 (0) | 2024.06.01 |
---|---|
[python] Reeborg's World - Hurdle 4 (0) | 2024.05.30 |
[python] 리스트 <-> 문자열 변환하기 (0) | 2024.05.29 |
[python] for문을 사용하여 리스트 내의 가장 큰 값을 출력하기 (0) | 2024.05.27 |
[python] #연습문제 - 보물 숨기기 (+중첩리스트) (0) | 2024.05.26 |