mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
9b42ba8f10
* changes * changes * revert changes * changes * add changeset * notebooks script * changes * changes --------- Co-authored-by: Ali Abid <aliabid94@gmail.com> Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: Ali Abdalla <ali.si3luwa@gmail.com>
27 lines
600 B
Python
27 lines
600 B
Python
import gradio as gr
|
|
|
|
with gr.Blocks() as demo:
|
|
gr.Markdown(
|
|
r"""
|
|
# Hello World! $\frac{\sqrt{x + y}}{4}$ is today's lesson
|
|
|
|
## the $\sqrt{x + y}$ is first
|
|
|
|
Start with $\frac{\frac{x+1}{x+2}}{x+3}$ then we get $ 2+x $ and $3$.
|
|
|
|
There are three formulas to know:
|
|
|
|
the first is $\gamma^2 + \theta^2 = \omega^2$
|
|
|
|
$\sqrt{x^2+1}$ is next
|
|
|
|
Integral $\int_{a}^{b} x^2 \,dx$ is last
|
|
|
|
Start typing below to see the output.
|
|
|
|
I spent $5 at the grocery store. Then I bought a $2.50 ice cream cone.
|
|
""")
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|