We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf5e34d commit edc17b6Copy full SHA for edc17b6
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