change folders

This commit is contained in:
Daniel Stodulski 2024-12-06 17:19:11 +01:00
parent 3cd27cb048
commit cc0a80ee23
4 changed files with 0 additions and 36 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 354 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 163 KiB

View File

@ -1,36 +0,0 @@
morse = {
'A': '.-', 'B': '-...', 'C': '-.-.', 'D': '-..', 'E': '.', 'F': '..-.',
'G': '--.', 'H': '....', 'I': '..', 'J': '.---', 'K': '-.-', 'L': '.-..',
'M': '--', 'N': '-.', 'O': '---', 'P': '.--.', 'Q': '--.-', 'R': '.-.',
'S': '...', 'T': '-', 'U': '..-', 'V': '...-', 'W': '.--', 'X': '-..-',
'Y': '-.--', 'Z': '--..','Ą': '.-.-', 'Ć': '-.-..', 'Ę': '..-..', 'Ł': '.-..-',
'Ń': '--.--', 'Ó': '---.', 'Ś': '...-...', 'Ż': '--..-.', 'Ź': '--..-', '1': '.----',
'2': '..---', '3': '...--', '4': '....-', '5': '.....', '6': '-....',
'7': '--...', '8': '---..', '9': '----.', '0': '-----'
}
import sys
text = ""
i = 1
while(i < len(sys.argv)):
text += str(sys.argv[i] + " ")
i += 1
text = text.upper()
res = []
i = 0
for el in text:
if(el == ' '):
res.append(" ")
i = 0
else:
res.append(morse[str(el)])
i += 1
if(i == 2):
res.append(" ")
i = 0
for el in res:
print(el, end="")