-
[Python] string 모듈을 이용한 임의의 패스워드 만들기Python/Python Programming 2020. 10. 16. 00:45
from random import choice from string import punctuation from string import ascii_letters from string import digits password_digit = ''.join(choice(digits) for i in range(3)) # 임의 수만큼 숫자 생성 password_alpha = ''.join(choice(ascii_letters) for i in range(3)) # 임의 수만큼 영대소문자 생성 password_symbols = ''.join(choice(punctuation) for i in range(2)) # 임의 수만큼 특수문자 생성 print(password_digit+password_alpha+password_symbols) 887vpF<$
'Python > Python Programming' 카테고리의 다른 글
[ Python ] cx_Oracle을 이용한 oracle 연결 (0) 2022.06.27 [Python] 줄 바꿈(\n) 을 포함 입력 (0) 2020.11.28 [Python] Celsius temperature To Fahrenheit's temperature Basic Function (섭씨, 화씨) (0) 2020.11.22 [Python] 할당된 변수들을 반복문으로 실행하기. (eval 함수이용) (0) 2020.11.02 [Python] Python Dictionary의 clear 메소드와 { } 차이 (0) 2020.08.03 Jupyter notebook 이미지 삽입하는 방법 (0) 2020.07.22 [Python] for문에 리스트 순회시 remove가 정상적으로 반영되지 않는 이유 (0) 2020.05.18 [Python] PC의 호스트네임(hostname)과 MAC Address 얻기 (0) 2020.05.14