PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import random as r
let="abcdefghijklmnopqrstuvwxyz"
caplet="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
lengt=8
class retLet:
def returnL():
ran=r.randint(1,26)
return let[ran]
def returnC():
ran=r.randint(1, 26)
return caplet[ran]
def configFull():
bot=""
for i in lengt:
ran=r.randint(1, 2)
match ran:
case 1:
bot+=returnL()
case 2:
bot+=returnC()
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run