上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页
摘要: Table of Contents Python Lists Lists Are Ordered(有序) Lists Can Contain Arbitrary Objects(混杂) List Elements Can Be Accessed by Index(可索引) Lists Can Be 阅读全文
posted @ 2019-08-10 23:33 Augustone 阅读(1141) 评论(0) 推荐(0)
摘要: 编程范式(Programming Paradigm)是某种编程语言典型的编程风格或者说是编程方式。随着编程方法学和软件工程研究的深入,特别是OO思想的普及,范式(Paradigm)以及编程范式等术语渐渐出现在人们面前。面向对象编程(OOP)常常被誉为是一种革命性的思想,正因为它不同于其他的各种编程范 阅读全文
posted @ 2019-08-09 12:57 Augustone 阅读(608) 评论(0) 推荐(0)
摘要: 1,anaconda有64位和32位两个版本,支持主流操作系统 2,可在清华镜像网站下载(曾经终止过,现在已经恢复) 3,下载安装后要装插件,可以是通过nbextensions(参见:https://blog.csdn.net/August1226/article/details/80762632) 阅读全文
posted @ 2019-08-09 11:42 Augustone 阅读(233) 评论(0) 推荐(0)
摘要: Strings are amongst the most popular types(最常用的类型) in Python. We can create them simply by enclosing characters in quotes(引号引起来). Python treats single 阅读全文
posted @ 2019-08-08 15:13 Augustone 阅读(508) 评论(0) 推荐(0)
摘要: Operators(运算符) are the constructs which can manipulate the value of operands. Consider the expression 4 + 5 = 9. Here, 4 and 5 are called operands and 阅读全文
posted @ 2019-08-08 14:14 Augustone 阅读(1590) 评论(0) 推荐(0)
摘要: Python 风格规范(Google) 本项目并非 Google 官方项目, 而是由国内程序员凭热情创建和维护。 如果你关注的是 Google 官方英文版, 请移步 Google Style Guide 以下代码中 Yes 表示推荐,No 表示不推荐。 分号 不要在行尾加分号, 也不要用分号将两条命 阅读全文
posted @ 2019-08-07 17:11 Augustone 阅读(200) 评论(0) 推荐(0)
摘要: 今天内容:python3-basic-operators.html ******************************************************** 什么是运算符? 本章节主要说明Python的运算符。举个简单的例子 4 +5 = 9 。 例子中,4 和 5 被称为操 阅读全文
posted @ 2019-08-03 15:03 Augustone 阅读(540) 评论(0) 推荐(1)
摘要: 1,下载1,web页面另存为。库的下载,都是在这里下载的https://pypi.org/,选择合适的版本,32位或64位,py2或py3,py3.6或py3.7等,文件类型.whl或.tar.gz的都行2,pip download 模块名3,pycharm-》setting-》解释器-》+2,安装 阅读全文
posted @ 2019-07-29 09:33 Augustone 阅读(220) 评论(0) 推荐(0)
摘要: 1,官网的数据类类型介绍:https://docs.python.org/zh-cn/3/library/stdtypes.html#mapping-types-dict 2,Runoob的集合介绍:https://www.runoob.com/python3/python3-set.html#se 阅读全文
posted @ 2019-07-22 16:31 Augustone 阅读(251) 评论(0) 推荐(0)
摘要: # 改改游戏小程序 import pygamefrom pygame.locals import *from sys import exitpygame.init() # 进行初始化bgsize = width, height = 1920, 1080pygame.display.set_mode( 阅读全文
posted @ 2019-07-20 21:33 Augustone 阅读(201) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页