24002600 发表于 2022-10-2 20:31:18

怎么在电脑手机的APP上运行编写好的python程序

counts = 10
while counts > 0:
    print("123456")
    counts = counts - 1

这个程序怎么在APP上运行

临时号 发表于 2022-10-2 20:35:19

你安装了python没
python下载地址->https://www.python.org/

asky533 发表于 2022-10-2 21:45:45

手机:在手机上的 App Store 里面搜索 python 3 ,然后一键安装 IDLE ,把这段代码直接复制粘贴进去就行了。
电脑:访问python 官网安装 IDLE ,在这里不细讲,安装完 IDLE 后点击 options -> configure IDLE -> window -> 把 open Edit window 勾选上就行了。可能还要重启一下才能体现效果。然后把代码复制进去在保存运行就可以看到运行结果了。

编程追风梦 发表于 2022-10-3 11:08:32

asky533 发表于 2022-10-2 21:45
手机:在手机上的 App Store 里面搜索 python 3 ,然后一键安装 IDLE ,把这段代码直接复制粘贴进去就行了 ...

不是有传言说官网被黑了吗?

asky533 发表于 2022-10-3 14:52:03

没被黑鸭,我登进去的时候还是好好的
页: [1]
查看完整版本: 怎么在电脑手机的APP上运行编写好的python程序