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