PyZombis numpy_pandas@19da491
Social
Runestone in social media:
Follow @iRunestone
Our Facebook Page
Help support us:
Search
Table of Contents
Book Index
User
Assignments
Practice
Change Course
Instructor's Page
Progress Page
Edit Profile
Change Password
Register
Login
Dark Mode
Scratch Activecode
Help
FAQ
Instructors Guide
About Runestone
Report A Problem
3.
Usando un messagebox
¶
from browser import document, alert, window, html def guardar_datos(event): try: destino = entrada_destino.value descripcion = entrada_descripcion.value direccion = entrada_direccion.value if not destino or not descripcion or not direccion: raise ValueError("Todos los campos deben estar llenos") window.sessionStorage["Destino"] = destino window.sessionStorage["Descripción"] = descripcion window.sessionStorage["Dirección"] = direccion except Exception as excepcion: alert(f'Error: {excepcion}') app = html.DIV() app <= html.LABEL('Destino: ') entrada_destino = html.INPUT() app <= entrada_destino app <= html.LABEL('Descripción: ') entrada_descripcion = html.INPUT() app <= entrada_descripcion app <= html.LABEL('Dirección: ') entrada_direccion = html.INPUT() app <= entrada_direccion boton = html.BUTTON('Guardar') boton.bind('click', guardar_datos) app <= boton document <= app
En una escala del 1 (a mejorar) al 3 (excelente), ¿cómo calificaría este capítulo?
1
2
3
You have attempted
of
activities on this page