如何用pyscript在网页里面写Python程式
Admin 2022-09-27 群英技术资讯 426 次浏览
根据 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>
pyscript,https://pyscript.net/
PyScript,https://github.com/pyscript/pyscript
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
这篇文章主要介绍了Python实现层次分析法及自调节层次分析法的示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
这篇文章主要为大家详细介绍了如何利用Python和Flask实现图片上传与下载(支持漂亮的拖拽上传),文中示例代码讲解详细,感兴趣的可以了解一下
这篇文章主要介绍了pytest配置文件pytest.ini的详细使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
元组是Python中一种重要的内置数据类型。与列表一样,我们经常使用元组将多个对象保存为相应的数据容器。本文为大家总结了元组的三个不常用特性,感兴趣的小伙伴可以了解一下
这篇文章主要介绍了numpy 函数里面的axis参数的含义,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008