Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. def metodo_prueba(mensaje, *, tamahnio):
  2.     print(mensaje)
  3.     print(tamahnio)
  4.  
  5.  
  6. metodo_prueba('Python', 1024)
  7. metodo_prueba('Python', tamahnio=1024)