Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
E01x001 committed Aug 25, 2021
1 parent 54abbd1 commit 00c643c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions classlc-cipher/classic-c.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
english = ['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']
country = [50,64,643,112,756,724,380,682,792,764,320,840]
num = 26
for i in range(0,12):
str = country[i]
numb = str%num
print(english[numb], end = "")
print("")
print("END")

0 comments on commit 00c643c

Please sign in to comment.