NEW
Font size
WorksheetsIntro to Python
Total questions: 10
Worksheet time: 5mins
What does print("hello) display?
hello
gives you an error
"hello"
"hello
Which is NOT true about the programming language Python?
works on a variety of platforms
designed to be closer to human languages
contains same advanced features as other languages
its creator named the language after a pet snake
What will get printed to the console when this command is executed:
print("Hello")
("Hello")
"Hello"
Hello
*** ERROR MESSAGE ***
Which is the correct command to print the text "Good bye!" to the console?
print(Good bye!)
print("Good bye!")
print("Good bye!)
print "Good bye!"
What is the most recent version of Python?
Python 2.0
Python forever
Python 3
Python 1.1
Python has a simple syntax similar to the English language.
True
False
Who created Python?
Dr. Greg Baker
Bill Gates
Your mom
Guido van Rossum
Python uses semicolons or parentheses to complete a command, as opposed to other programming languages which often use new lines.
True
False
Python is used for:
Server Side Web Development
Software Development
Mathematics
All of the above
