Term
|
Definition
closes a file after you are done processing it. |
|
|
Term
|
Definition
in Python starts with a # and the computer will ignore everything from that character to the end of that line. Comments are used to explain your code to people. |
|
|
Term
|
Definition
function is used like this strName.find(test). It returns the index of test in strName if it is found and -1 if it is not found. |
|
|
Term
|
Definition
procedure opens the passed file for either reading or writing. |
|
|
Term
|
Definition
function returns a list of strings separated by a specified character. For example, if message = "Nora, Jones, 15" then message.split(",") would return ['Nora', 'Jones', '15']. |
|
|