上一页 1 ··· 13 14 15 16 17
摘要: 装载自:https://www.cnblogs.com/cisum/p/8064222.html Python3 运算符 什么是运算符? 本章节主要说明Python的运算符。举个简单的例子 4 +5 = 9 。 例子中,4 和 5 被称为操作数,"+" 称为运算符。 Python语言支持以下类型的运 阅读全文
posted @ 2018-04-23 08:46 云long 阅读(1070) 评论(0) 推荐(0) 编辑
摘要: 修改字符串的值 string是一种不可变的数据类型,尝试修改string的值,python会报错:“TypeError: ‘str’ object does not support item assignment” 可以赋值给新的变量。 字符串可以用单引号或双引号来创建。 Python 不支持单字符 阅读全文
posted @ 2018-04-20 16:51 云long 阅读(1073) 评论(0) 推荐(0) 编辑
摘要: 转载自:http://blog.csdn.net/Liu68686868/article/details/79518471 我是从 https://dev.mysql.com/downloads/file/?id=474802 上面下载的社区版MySQL(版本为mysql-installer-web 阅读全文
posted @ 2018-04-12 11:05 云long 阅读(234) 评论(0) 推荐(0) 编辑
摘要: python list tuple dict set 阅读全文
posted @ 2018-04-11 16:08 云long 阅读(973) 评论(1) 推荐(1) 编辑
上一页 1 ··· 13 14 15 16 17