CSCI 151: Lab Practice
Skill set for this LAB:
- input/print functions, Basic Programming Design and Skills
PART 1: Lab Practice
PART 2:
For the program below, answer the following
questions:
- How many variables are in this program?
- For each variable, write NAME, TYPE and VALUE. Provide brief
explanation.
X = "Python"
C = 5
D = 3
E = C/D
K = C//D
M = C%D - 2*E
Y = C*D**4