1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # # µû¶óÇÏ¸ç ¹è¿ì´Â ÆÄÀ̽ã°ú µ¥ÀÌÅÍ°úÇÐ(»ý´ÉÃâÆÇ»ç 2020) # LAB 9-4 1ȸ¿ë Æнº¿öµå¸¦ ¸¸µé¾î º¸ÀÚ, 231ÂÊ # import random import string src_str = string.ascii_letters + '0123456789' n_digits = int(input('¸î ÀÚ¸®ÀÇ ºñ¹Ð¹øÈ£¸¦ ¿øÇϽʴϱî? ')) otp = '' for i in range(n_digits) : idx = random.randrange(len(src_str)) otp += src_str[idx] print(otp) | cs |