SYMBOL INDEX (47 symbols across 24 files) FILE: more-python-for-beginners/01 - Formatting and linting/bad.py function helper (line 7) | def helper(name='sample'): function another (line 10) | def another(name = 'sample'): FILE: more-python-for-beginners/01 - Formatting and linting/good.py function print_hello (line 1) | def print_hello(name: str) -> str: FILE: more-python-for-beginners/02 - Lambdas/method_sorter.py function sorter (line 1) | def sorter(item): FILE: more-python-for-beginners/03 - Classes/basic_class.py class Presenter (line 1) | class Presenter(): method __init__ (line 2) | def __init__(self, name): method say_hello (line 5) | def say_hello(self): FILE: more-python-for-beginners/03 - Classes/properties_class.py class Presenter (line 1) | class Presenter(): method __init__ (line 2) | def __init__(self, name): method name (line 7) | def name(self): method name (line 11) | def name(self, value): FILE: more-python-for-beginners/04 - Inheritance/demo.py class Person (line 1) | class Person: method __init__ (line 2) | def __init__(self, name): method say_hello (line 4) | def say_hello(self): class Student (line 7) | class Student(Person): method __init__ (line 8) | def __init__(self, name, school): method sing_school_song (line 11) | def sing_school_song(self): FILE: more-python-for-beginners/05 - Mixins/demo.py class Loggable (line 1) | class Loggable: method __init__ (line 2) | def __init__(self): method log (line 4) | def log(self): class Connection (line 7) | class Connection: method __init__ (line 8) | def __init__(self): method connect (line 10) | def connect(self): class SqlDatabase (line 13) | class SqlDatabase(Connection, Loggable): method __init__ (line 14) | def __init__(self): function framework (line 20) | def framework(item): FILE: more-python-for-beginners/09 - Asynchronous programming/async_demo.py function load_data (line 5) | async def load_data(session, delay): function main (line 12) | async def main(): FILE: more-python-for-beginners/09 - Asynchronous programming/sync_demo.py function load_data (line 4) | def load_data(delay): function run_demo (line 9) | def run_demo(): function main (line 18) | def main(): FILE: python-for-beginners/03 - Comments/enable_pin.py function enable_pin (line 6) | def enable_pin(user, pin): FILE: python-for-beginners/13 - Functions/code_challenge_solution.py function calculator (line 10) | def calculator(first_number, second_number, operation): FILE: python-for-beginners/13 - Functions/get_initails_function.py function get_initial (line 7) | def get_initial(name): FILE: python-for-beginners/13 - Functions/getting_clever_with_functions_harder_to_read.py function get_initial (line 7) | def get_initial(name): FILE: python-for-beginners/13 - Functions/print_time_function.py function print_time (line 4) | def print_time(): FILE: python-for-beginners/13 - Functions/print_time_function_fix_import.py function print_time (line 6) | def print_time(): FILE: python-for-beginners/13 - Functions/print_time_with_message_parameter.py function print_time (line 6) | def print_time(task_name): FILE: python-for-beginners/14 - Function parameters/code_challenge_solution.py function calculator (line 9) | def calculator(first_number, second_number, operation='ADD'): FILE: python-for-beginners/14 - Function parameters/get_initials_default_values.py function get_initial (line 7) | def get_initial(name, force_uppercase=True): FILE: python-for-beginners/14 - Function parameters/get_initials_function.py function get_initial (line 7) | def get_initial(name): FILE: python-for-beginners/14 - Function parameters/get_initials_multiple_parameters.py function get_initial (line 7) | def get_initial(name, force_uppercase): FILE: python-for-beginners/14 - Function parameters/get_initials_named_parameters.py function get_initial (line 7) | def get_initial(name, force_uppercase): FILE: python-for-beginners/14 - Function parameters/named_parameters_make_code_readable.py function error_logger (line 14) | def error_logger(error_code, error_severity, log_to_db, error_message, s... FILE: python-for-beginners/15 - Packages/helpers.py function display (line 1) | def display(message, is_warning=False): FILE: python-for-beginners/18 - Decorators/creating_decorators.py function color (line 5) | def color(color): function greeter (line 15) | def greeter():