IT 116: Introduction to Scripting
Class 6 Ungraded Quiz
Write a Python statement that prints the word "hello" but does not advance to the next line.
Write a Python statement that prints
1, 2, 4
Write a Python expression that concatenates the string "My name is " with the string variable
name
.
Write a Python expression that concatenates the string "The rate is " with the variable
rate
which is of type
float
.
Write a Python expression that concatenates the string "The distance is " with the expression
speed * time
Write a SINGLE print statement, without using triple quotes, which prints
Line 1 Line 2 Line 3
Write a SINGLE print statement, without using triple quotes or concatenation, which prints
The path is C:\temp\memo.txt.
Write a SINGLE print statement, without using triple quotes or concatenation, which prints
She said "I'm OK"