# Clase en vĂ­deo: https://youtu.be/_y9qQZXE24A?t=1810 ### Type Hints ### my_string_variable = "My String variable" print(my_string_variable) print(type(my_string_variable)) my_string_variable = 5 print(my_string_variable) print(type(my_string_variable)) my_typed_variable: str = "My typed String variable" print(my_typed_variable) print(type(my_typed_variable)) my_typed_variable = 5 print(my_typed_variable) print(type(my_typed_variable))