# Exemplo de erro # print("Python" * 2.5) # Isso causará um TypeError # Correção print("Python" * 2) # Saída: PythonPython