mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
31 lines
668 B
Python
31 lines
668 B
Python
from rich.table import Table
|
|
|
|
from textual.app import App, ComposeResult
|
|
from textual.widgets import Static
|
|
|
|
|
|
class FizzBuzz(Static):
|
|
def on_mount(self) -> None:
|
|
table = Table("Number", "Fizz?", "Buzz?")
|
|
for n in range(1, 16):
|
|
fizz = not n % 3
|
|
buzz = not n % 5
|
|
table.add_row(
|
|
str(n),
|
|
"fizz" if fizz else "",
|
|
"buzz" if buzz else "",
|
|
)
|
|
self.update(table)
|
|
|
|
|
|
class FizzBuzzApp(App):
|
|
CSS_PATH = "fizzbuzz01.css"
|
|
|
|
def compose(self) -> ComposeResult:
|
|
yield FizzBuzz()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = FizzBuzzApp()
|
|
app.run()
|