Participation Point #1 (Identifying what the words mean)
CSCI 1133, Spring 2020
Your Name:_________________________________________________
X500 name:________________________________________________
Lab Section# or Date/Time:________________________________________________
Complete the following:
• Circle comments
• Box the variable names
• Underline the keywords
• What does the word math represent?
• Write down the names of any functions that are called:
• What is printed by this snippet of code?
# square.py
# This program squares a number
import math
print(‘This program prints the square of a number’)
num = int(input(‘Please enter your first number: ‘))
square = num * num
print (‘The square of ‘, num, ‘ is ‘, square)