-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.py
More file actions
35 lines (28 loc) · 1.26 KB
/
utils.py
File metadata and controls
35 lines (28 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from os import system
#Alfabetos
def list_Alf(selec):
alf_spanish="ABCDEFGHIJKLMNÑOPQRSTUVWXYZ"
alf_english="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
if selec==1:
return alf_spanish
elif selec==2:
return alf_english
else:
return 0
def art_decor():
system("cls")
logo="""
:: :: :: :::::::::: ::::::: :: ::::::
:: :: :: :: :: :: :: :: :
:: :: :: :: :: :: :: ::::::
:: ::__:: ::::::: :::::::: ::___:: ::::
:: :: :: :: :: :: :: :: ::
:: :: :: :: :::::::::: :::::::: :: :: :: ::
:: :: :::::::: ::::::: :: :::::::: ::::::
:: :: :: :: :: :: :: :: :
:: :: :: :: :: :: :: ::::::
:: :: ::::::: ::___:: ::::::: ::::
:: :: :: :: :: :: :: ::
:: :: :::::::: :: :: :: ::::::::: :: ::
"""
print(logo)