Login
📚 Python for Introductory Statistics: Lab Workbook
Chapters ▾

Lab Answers

Lab 1.1.1

print("Hello, World")
Show expected output
Hello, World

Lab 1.1.2

print('Welcome to Python Programming Language.')
Show expected output
Welcome to Python Programming Language.

Lab 1.2.1

10+10
Show expected output
20

Lab 1.2.2

100-88
Show expected output
12

Lab 1.2.3

1/2+7.1-10*3
Show expected output
-22.4

Lab 1.2.4

-5 + 7 - (100+.05)/10
Show expected output
-8.004999999999999

Lab 1.2.5

Adapted from Python for Introductory Statistics: Student's Lab Workbook, by Simon Aman (Truman College, City Colleges of Chicago), licensed under CC BY 4.0. Changes were made: reformatted as an accessible XYZ web edition with live in-browser code cells. License: CC-BY-4.0.