mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-18 18:14:34 +08:00
print() is a function just like every other function (#1101)
* print() is a function just like every other function
This commit is contained in:

committed by
Harshil

parent
6654e1ec7d
commit
89acf5d017
@ -71,11 +71,11 @@ def decrypt(message):
|
||||
def main():
|
||||
message = "Morse code here"
|
||||
result = encrypt(message.upper())
|
||||
print (result)
|
||||
print(result)
|
||||
|
||||
message = result
|
||||
result = decrypt(message)
|
||||
print (result)
|
||||
print(result)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
Reference in New Issue
Block a user