Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 17, 2021 17:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/92e4e058c8d58e501ca57ebbe79e75dc to your computer and use it in GitHub Desktop.
Save parzibyte/92e4e058c8d58e501ca57ebbe79e75dc to your computer and use it in GitHub Desktop.
def imprimir_informacion(r):
altura = r.winfo_reqheight()
anchura = r.winfo_reqwidth()
altura_pantalla = r.winfo_screenheight()
anchura_pantalla = r.winfo_screenwidth()
print(f"Altura: {altura}\nAnchura: {anchura}\nAltura de pantalla: {altura_pantalla}\nAnchura de pantalla: {anchura_pantalla}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment