“Gunakan kode python dalam html” Kode Jawaban

Python di html

<-- We can use python inside the HTML file -->
<py-script>print("Hi")</py-script>

<-- To import python file into html -->
<py-script src="./script.py"></py-script>
Friendly Finch

Gunakan kode python dalam html

<!DOCTYPE html>
<html lang="en">
   <head>
      <meta charset="UTF-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>PyScript</title>

      <!-- styles and script dependencies -->
      <link rel="stylesheet" href="https://pyscript.net/alpha/pyscript.css" />
      <script defer src="https://pyscript.net/alpha/pyscript.js"></script>
   </head>
   <body>
      <!-- title -->
      <h3>Testing python code in HTML</h3>

      <!-- python code -->
      <py-script> print('Now you can!') </py-script>
     
   </body>
</html>
Mehedi Islam Ripon

Jawaban yang mirip dengan “Gunakan kode python dalam html”

Pertanyaan yang mirip dengan “Gunakan kode python dalam html”

Lebih banyak jawaban terkait untuk “Gunakan kode python dalam html” di HTML

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya