Skip to content

Commit 8c0dc2e

Browse files
author
Me
committed
namespace
1 parent 3f17699 commit 8c0dc2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

caesar-cipher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ def caesar():
1717
table = str.maketrans(alphabet, shifted_alphabet)
1818
return message.translate(table)
1919

20-
21-
print(caesar())
20+
if __name__ == '__main__':
21+
print(caesar())
2222

0 commit comments

Comments
 (0)