Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from guizero import App, Text
- def decrease():
- text.value = int(text.value) - 1
- app = App("text.value")
- text = Text(app, text="1200")
- text.repeat(1200, decrease)
- app.display()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement