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...
To change a text block's transparency or color, it must first be converted to a(n) symbol.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology
The ________ function determines the value of an investment or business by analyzing an irregular time series of incoming and outgoing cash flows
A) NPV B) XNPV C) IRR D) XIRR
Computer Science & Information Technology
A packet-filtering firewall is a device that filters traffic based on ACL-like rules
Indicate whether the statement is true or false
Computer Science & Information Technology
To delete a table, use the ____________________ statement with the mysql_query() function.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology