Python Coding Flashcards
Is Python an operating system?
No - it is a high level programming language
Define a variable
Variables are containers for storing data values
What is missing from this line of code?
print (“hello)
A “ is missing
An If statement is an example of…
Selection
A while loop is an example of…
Iteration
A print statement is an example of…
Sequence
What does this line of Python code do?
this line creates a new variable
Not run as it is just a comment
Why is this a syntax error?
if mark >10:
print (“well done”)
Line 2 is not indented
What is a syntax error?
When there is a spelling mistake or code is missing
What are the two other error types in addition to Syntax?
Logic error
Run-time error
What data type would a shoe size use?
Float
What data type would a phone number use?
String
What data type would date of birth use?
Date