Á¤¼ºÈÆ
    µµÀü¹®Á¦ 9.3 (¸ð¹ü ´ä¾È)



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

  µî·ÏÀÏ : 2022-04-26 [17:06] Á¶È¸ : 552 ´Ù¿î : 0   
 
¡â ÀÌÀü±ÛµµÀü¹®Á¦ 9.4 (¸ð¹ü ´ä¾È)
¡ä ´ÙÀ½±ÛµµÀü¹®Á¦ 9.3 (¸ð¹ü ´ä¾È)
Python for AI ½Ç½À°Ô½ÃÆÇ
¹øÈ£ ¨Ï Á¦ ¸ñ Á¶È¸ µî·ÏÀÏ
Anaconda3 ¼³Ä¡
ColabTurtlePlus
½Ç½À ¸ñ·Ï
Colab ½Ç½À
½Ç½À ½Ã ÇлýµéÀÌ ÀÚÁÖÇÏ´Â ½Ç¼ö ¿¹µé
281 ¦¦❶ llab_10_3.py (±³Àç) 605 02-21
280 ¦¦❶ llab_10_2.py (±³Àç) 645 02-21
279 ¦¦❶ lcode_10_5.py (±³Àç) 551 02-21
278    ¦¦❷ lcode_10_5_3.py (±³Àç) 516 02-21
277    ¦¦❷ lcode_10_5_2.py (±³Àç) 483 02-21
276    ¦¦❷ lcode_10_5_1.py (±³Àç) 573 02-21
275 ¦¦❶ llab_10_1.py (±³Àç) 490 02-21
274 ¦¦❶ lcode_10_3.py (±³Àç) 527 02-21
273 (9Àå) ÅؽºÆ®¸¦ ó¸®Çغ¸ÀÚ 834 02-19
272 ¦¦❶ (Ãß°¡ µµÀü¹®Á¦) ¹®ÀÚ¿­ÀÇ ÀϺκи¸ ¼Ò¹®ÀÚ·Î º¯°æ 310 05-25
271    ¦¦❷ Ãß°¡ µµÀü¹®Á¦ (¸ð¹ü ´ä¾È) 327 05-25
270 ¦¦❶ µµÀü¹®Á¦ 9.6 763 04-26
269    ¦¦❷ µµÀü¹®Á¦ 9.6 (¸ð¹ü ´ä¾È) 559 04-26
268 ¦¦❶ µµÀü¹®Á¦ 9.5 710 04-26
267    ¦¦❷ µµÀü¹®Á¦ 9.5 (¸ð¹ü ´ä¾È) 561 04-26
266 ¦¦❶ µµÀü¹®Á¦ 9.4 658 04-26
265    ¦¦❷ µµÀü¹®Á¦ 9.4 (¸ð¹ü ´ä¾È) 537 04-26
264 ¦¦❶ µµÀü¹®Á¦ 9.3 723 04-26
263    ¦¦❷ µµÀü¹®Á¦ 9.3 (¸ð¹ü ´ä¾È) 552 04-26
262 ¦¦❶ µµÀü¹®Á¦ 9.2 882 04-26

[1][2][3][4][5][6][7][8][9][10]-[Next][20]