Browser interface
Brython-specific built-in modules
Working with Brython
Cookbook
|
Problem
Display content in an element of the web page
Solution
from browser import document
document['zone'] <= "blah "
|
Initial content
|
document["zone"] is the element in the web page with the id "zone" (here,
the colored table cell)
|