Python Syntax Flashcards
When should we place a parenthetical in a code?
For general use case: Parentheses should be placed at the end of a function whether it’s within a class(would be a method) or defined globally function.
In this instance, we use parentheses to specify inputs that should be provided to the function. Functions don’t always have input but can take them if needed.
For Syntax: We also use parentheses to indicate order or operations to specify an action in a code that should occur first.
For Classes: When we’re creating an instance or instantiating a class we use a parenthetical to specify the attributes of the instance if needed.
For data structures: We also use parenthesis to specify the creation of a tuple.
When should we indent for a code?
Indentation for code should occur for the following:
-For Loops
-While Loops
-For creating Classes
-For creating functions
-Conditional statements (if, elif, else must be lowercase)
-Try/Except Blocks
When should we add a period in a code?
-Periods should be used when we are adding a method or function to the end of a variable.
-They’re also used to indicate a file extension.
-They are also used for formatting within print statements
When should we have quotations in a code?
Does it matter if we have double quotes or single quotes in a code?
When do we remove an indent for a code that already has one?
When do we use square brackets in a code?
When should we use curly brackets for a code?