pyscript在网页怎样写Python程式,有什么要注意
Admin 2022-09-05 群英技术资讯 301 次浏览
根据 Anaconda 的项目 pyscript,可以将 python 的代码直接写在网页中,目前只支援两种标签,分别是<py-script>
与 <py-repl>
,以下是简单的示例。
使用这两行导入 pyscript
<link rel="stylesheet" href="https://pyscript.net/alpha/pyscript.css" rel="external nofollow" rel="external nofollow" /> <script defer src="https://pyscript.net/alpha/pyscript.js"></script>
使用<py-repl>
标签,会显示原始码,可以单击左下角的按键,开始运行。
<py-repl> from datetime import datetime now = datetime.now() print("目前日期时间", now.strftime("%m/%d/%Y, %H:%M:%S")) list1 = list("Pythony在网页中执行") for i in list1: print("{}".format(i)) </py-repl>
效果如下:
使用<py-repl>
标签的结果,原则上是使用非同步处理,所以与主画面渲染比较会有延迟。
使用<py-script>
标签
<py-script> from datetime import datetime now = datetime.now() print("目前日期时间", now.strftime("%m/%d/%Y, %H:%M:%S")) list1 = list("Pythony在网页中执行") for i in list1: print("{}".format(i)) </py-script>
效果如下:
使用<py-script>
标签的结果
完整程式范例如下。
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width,initial-scale=1" /> <title>第一个 PyScript 练习</title> <link rel="icon" type="image/png" href="favicon.png" rel="external nofollow" /> <link rel="stylesheet" href="https://pyscript.net/alpha/pyscript.css" rel="external nofollow" rel="external nofollow" /> <script defer src="https://pyscript.net/alpha/pyscript.js"></script> </head> <body> 在网页中撰写 Python 程式<br> 显示目前时间与印出一个列表: 使用 py-repl 标签<br/> <py-repl> from datetime import datetime now = datetime.now() print("目前日期时间", now.strftime("%m/%d/%Y, %H:%M:%S")) list1 = list("Pythony在网页中执行") for i in list1: print("{}".format(i)) </py-repl> 使用 py-script 标签<br/> <py-script> from datetime import datetime now = datetime.now() print("目前日期时间", now.strftime("%m/%d/%Y, %H:%M:%S")) list1 = list("Pythony在网页中执行") for i in list1: print("{}".format(i)) </py-script> </body> </html>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
Python版的消除类的游戏还是很多的,今天就出一个消除类——泡泡龙小游戏。文中的示例代码很详细,感兴趣的小伙伴快来跟随小编一起学习一下吧
这篇文章主要介绍了Python代码中引用已经写好的模块、方法,下面就介绍两种方式,可以简洁明了地调用自己在其他模块写的代码,需要的朋友可以参考下
如果想要使用Python做爬虫操作,那么关于chardet库的内容是需要掌握的。对此下面就给大家介绍一下关于chardet库的安装与使用,下本有“爬虫”中使用chardet库的简单实例,感兴趣的朋友们可以看看。
这篇文章介绍了Python网络编程之HTTP客户端模块urllib与urllib3,文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
这篇文章主要介绍了使用numpy.ndarray添加元素,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008