8 lines
145 B
Python
8 lines
145 B
Python
myInt = 4
|
|
my2ndInt = 2
|
|
finalInt = 0
|
|
intComment = "Integers do not need to be inside quotes!"
|
|
|
|
print (myInt,my2ndInt,finalInt)
|
|
print (intComment)
|