We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb9a735 commit f743d95Copy full SHA for f743d95
ciphers/mixed_keyword_cypher.py
@@ -65,4 +65,5 @@ def mixed_keyword(key: str = "college", pt: str = "UNIVERSITY") -> str:
65
return cypher
66
67
68
-print(mixed_keyword("college", "UNIVERSITY"))
+if __name__ == "__main__":
69
+ print(mixed_keyword("college", "UNIVERSITY"))
0 commit comments