Using the Python interactive shell, instantiate a list that holds three-letter abbreviations for the first six months of the year and display the list.
What will be an ideal response?
>>> mon = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun']
>>> print mon
['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun']
Computer Science & Information Technology
You might also like to view...
______ information is error free.
A. Accurate B. Useful C. Verifiable D. Organized
Computer Science & Information Technology
In other programming languages, such as C++, abstract classes are known as ____ classes.
A. anonymous B. pseudo C. simulated D. virtual
Computer Science & Information Technology