Python

By admin, 20 十一月, 2023
# 趋动云
pip config set global.index-url https://pypi.virtaicloud.com/repository/pypi/simple

# 清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# 阿里源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
# 腾讯源
pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple
# 豆瓣源
pip config set global.index-url http://pypi.douban.com/simple/
# 换回默认源
pip config unset global.index-url

标签

By admin, 16 十一月, 2023

人工智能时代的编程方式改变了,只需要改一行代码,就可以把识别率从53%提高到96%。改一行代码调参数,然后等待会不会有更好结果。好像亲手把思考的能力奉送给了机器。

标签

By admin, 4 五月, 2023

一个显示当前日期时间的简单网页代码

#!/usr/bin/env python3
import os
date = os.popen("date").read()

html = f"""
<html>
  <body>
    <p style='color:#ff0000'>
      {date}
    </p>
  </body>
</html>
"""

print(html)

解释一下里面的语法:

第1行是Shell脚本的声明,告诉操作系统应该在哪里找执行这个脚本的命令:

#!/usr/bin/env python3

下面两句是调用系统命令并获取结果。我们可以在Linux的Shell里运行date命令也看到这个结果。date还可以替换成别的Linux命令。特别注意不要把未经过滤的用户输入字符串作为系统命令运行,这会让系统被轻易地入侵。

标签

By admin, 28 四月, 2023

如果下面命令报错:

pip3 install turtle

请下载附件,然后运行:

tar zxvf turtle-0.0.2-fixed.tar.gz
pip3 install -e turtle-0.0.2

然而,安装是成功了,但是Mac上运行没有什么效果。Android上的QPython上运行则什么属性都没有。因此,想在Android上用turtle,应该直接安装Pydroid 3,它内置了tutle库。

标签