Arrays or Lists An array is a data structure that allows you to hold many items of data, all of the same datatype with one name. In python Arrays are called Lists, where each element can be a different datatype An list of 10 student names could be stored in a list: In most program...
1 Printing in Python Every program needs to do some output This is usually to the screen (shell window) Later we’ll see graphics windows and external files. More Sequences. Review: String Sequences Strings are sequences of characters so we can: Use an index to refer to an individ...