Python Intro Flashcards
What is Python?
A popular programming language created by Guido van Rossum in 1991
What is Python used for?
Web development
Software development
Mathematics
System scripting.
What can Python do?
Create web apps
Automate workflows
Connect to databases
Handle big data
Rapid prototyping
Why use Python?
Works on many platforms Simple English-like syntax
Concise programs
Fast prototyping
Multi-paradigm
What is the most recent major Python version?
Python 3
Where can Python code be written?
In a text editor or an integrated development environment like Thonny
How is Python designed for readability?
Uses whitespace for indentation instead of braces
What makes Python syntax unique?
Influenced by English language and maths
Uses new lines instead of semicolons
What does Python rely on to define scope?
Indentation and whitespace instead of curly brackets
Can Python be used procedurally?
Yes
Can Python be used in an object-oriented way?
Yes
Can Python be used functionally?
Yes
Does Python work on different platforms?
Yes!
Windows, Mac, Linux, etc
Is Python syntax similar to English?
Yes
Can Python programs be written with fewer lines than other languages?
Yes