Python Flashcards
Programs
Lists of instructions the computer preforms in sequential order
Source Code
Program written in a high-level programming language
Python
High-level programming language
Easy
Emphasizes code readability
Python Interpreter
Read instructions from top to bottom, left to rights
Performs instruction validation
run in command line: py or python3
IDE
Integrated Development Environment
Most useful in Python: PyCharm
IDLE
Python’s Integrated Development Learning Environment
String
multiple characters (animals)
Integer
Number without decimal (2)
Float
Decimal number (2.5)
Boolean
True or False
Hashtag #
Renders an entire line as a comment
””” three quotes
Used in the beginning and end of multi-line comments
print()
Prints what is in the ()
Keywords
Python’s reserved words and instructions like print, def
Indentation
Mechanism that associates a block of code with a condition, loop, or class