Pyscript - Random Number Table

<head>

    <link rel="stylesheet" href="https://pyscript.net/alpha/pyscript.css" />

    <script defer src="https://pyscript.net/alpha/pyscript.js"></script>

</head>

<body>

    <py-script>

import random

num = random.randint(1,100)

print(f"The number is {num}")

for i in range(1,11):

print(f"{i} * {num} = {i*num}")

    </py-script>

</body>

Hi here! Would you mind describing what you are trying to say here? Is this meant as an example?

Hello sir, Yes it an example