top of page

A Big Calculator

Other Operations

Comments

Checkpoint #1

Variables

Checkpoint #2

Summary

Comments

Comments are lines of code that are ignored by the computer, but are useful to coders to write notes to themselves or others reading their code. A comment is created with the # symbol (#CommentYourCode will be trending any day now). 

What should print out when you type in the following code? Run to test your hypothesis, and then check your solution.

1 # Comments are not interpreted as code

2 # print(19 + 1)

3 print(* 6)

bottom of page