Python is a _____ typed language.
What is dynamically/duck typed language?
"Ideally, functions only take [1] and produce [2], and don’t have any internal state that affects the [2] produced for a given [1]"
What is input and output?
Like Java, everything in Python is _____.
What is an object?
This block will test the excepted error to occur.
Unchained
What is Django
Function and variable names speak in parseltongue.
What is snake case?
Functions that have no side effects at all.
What are pure functions/is purely functional?
These special methods that start and end with the double underscores.
What are magic methods?
This block handles the error.
What is the except block?
What is FastAPI?
127//3
What is 42?
"A programming paradigm where programs are constructed by applying and composing functions."
What is functional programming?
class Student(Person): inherits from this class.
This block always gets executed either exception is generated or not.
What is the finally block?
Hydro
What is Flask?
When defining a function, this keyword is used.
What is def?
This occurs when a function relies on, or modifies, some state variable value(s) outside its local environment.
What is a side effect?
A piece of data that a class has, stored in a variable. Inside of a class definition.
What is attribute/field/property?
Instead of throwing it, Josh Groban would do this to an error.
What is raise?
A collection of packages or modules that allow developers to write Web applications or services.
What is a Python Web Framework?
The name Python came from this.
What is Monty Python's Flying Circus?
Scala, Haskell, F#, SQL but not Java, Python, C#
What are functional programming languages?
"A programming paradigm based on the concept of "objects", which can contain data and code: data in the form of fields (often known as attributes or properties), and code, in the form of procedures (often known as methods). "
What is Object Oriented Programming/OOP?
If there is no exception then this block will be executed.
What is the else block?
This is used to query and manipulate data from a database using an object-oriented paradigm.
What is an ORM?