Python Flashcards
Who made python
Guido Van Rossum, a Dutch programmer who wrote python as a hobby project back in the late1980´s
How to save a python file
Open LMS or IDE
New python project
File name.extension
What are commands
Ways to communicate with a computer
How to teach a computer to speak
Print statement
Example:
print («flashcards») =
flashcards
How to print with quotation marks
Print (
What is syntax and indentation?
Syntax: rules to follow in proggraming
Indentation: Spaces before the start of a sentence
What is the indentation rule?
I Using a certain amount of spaces or special characters, then to continue, use same things, otherwise error
What do speech marks do
Get text as given, example:
print (4+4)= 8
print («4+4») =4+4
What is a variable
A word that stores data
What is declaring or initializing
Creating a variable
What are keywords in python
Predefined words that contain special meanings for the computer, can’t be a variable
What is a statement in python
Logical instruction that the computer executes
What is an expression in python
Type of statement that contains logic sequences of things
What are loops
Control structures that execute a block of code repeatedly based on a condition
What are the 2 main types of loops in python
Loops and while loops