摘要: 比较完整的教程:https://www.runoob.com/python3/python3-tutorial.html 1.运算符号 (1)运算符号 print(10*3) print(10**3) # 10的3次方 print(10/3) print(10//3) # 取整数部分 print(1 阅读全文
posted @ 2024-08-18 20:54 卡卡发 阅读(56) 评论(0) 推荐(0)
摘要: (1)编写环境介绍 在下载安装好python后: 打开命令提示符界面,进入python解释器界面(即为一个执行python代码的程序): 编写python代码时,还是建议用editor编辑器或者IDE集成环境,IDE时editor的扩展,包括了autocompletion,debugging,tes 阅读全文
posted @ 2024-08-18 15:59 卡卡发 阅读(28) 评论(0) 推荐(0)