Create a secret message by encoding each character of a string into a number using ord. For each character in the message, print the rod of that character.
Note: The word “rod” is a typo, it should be “ord”
```
def secretMessage(source):
for s in source:
print (ord(s))
```
Computer Science & Information Technology
You might also like to view...
Since the zero-knowledge test is the closest to mimicking real life, ____ testing is a particularly effective method to test the incident identification and response procedures of a target function.
A. blind B. double-blind C. open D. closed
Computer Science & Information Technology
Digital ______ is the discovery, collection, and analysis of evidence found on computers and networks.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology