mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
add __main__ around print (#8747)
This commit is contained in:
parent
cf5e34d479
commit
edc17b60e0
|
@ -65,4 +65,5 @@ def mixed_keyword(key: str = "college", pt: str = "UNIVERSITY") -> str:
|
|||
return cypher
|
||||
|
||||
|
||||
print(mixed_keyword("college", "UNIVERSITY"))
|
||||
if __name__ == "__main__":
|
||||
print(mixed_keyword("college", "UNIVERSITY"))
|
||||
|
|
Loading…
Reference in New Issue
Block a user