ivo Blog

ezlost,记录那些容易被忘记的美好过往

centos install mysql5.7

centos install mysql5.7

How To Install MySQL on CentOS 7 简介 MySQL是一个开源的数据库,它也是LEMP的一部分LEMP (Linux, Nginx, MySQL/MariaDB, PHP/Python/Perl) CentOS 7默认使用mariadb来代替传统的masql,mariadb是从mysql商业化以后fork出来的一个开发版本. 如果你运行yum instal...

win7 sp1 .net4.7无法安装

win7 sp1 .net4.7

在win7 sp1中安装 .net 4.7会报错,其实式因为缺少一个依赖的环境。微软官方的解释地址如下https://support.microsoft.com/zh-cn/help/4020302/the-net-framework-4-7-installation-is-blocked-on-windows-7-windows-ser 那里d3dcompiler 更新从以下链接之前安装....

python 基础教程之9 List comprehension 列表推导式, String Formatting 格式化,Useful Functions 常用的str函数

linux python基础教程 python 3.5

0x1A List comprehension 列表推导式 列表推导式,是一种快速的根据规则来创建列表的方式 >>> cubes = [i**3 for i in range(5)] >>> print(cubes) [0, 1, 8, 27, 64] 列表推导式,里面可以包含if语句 >>> e...

python 基础教程之8 字典,元祖,list slices切片

linux python基础教程 python 3.5

0x17 Dictionaries 字典 字典是一种数据结构,map keys to values.list 可以理解为一种特殊的字典,字典与list有相同的索引方式,[ ] >>> ages = {"Dave":24,"Mary":42,"John":58} >>> print(ages["Dave"]) 24 >>> p...

python 基础教程之7 文件操作,文件写入,None

linux python基础教程 python 3.5

0x14 文件读操作 python可以非常简单的处理文件,文件在被编辑或读取之前需要先open open参数里面写的是文件的path 如果文件和程序是同级目录,直接写文件名即可 myfile = open("filename.txt") 打开文件时候添加第二个参数可以改变文件打开的方式 r 只读 w 写入 a...

python 基础教程之6 函数作为对象,模块,异常

linux python基础教程 python 3.5

0x11 函数作为对象使用 下面的示例中要注意 a b作为参数的数据类型 >>> def multiply(x,y): ... return x * y ... >>> a = 4 >>> b = 7 >>> operation = multiply >>> print(opera...

python 基础教程之5 loop,函数,注释

linux python基础教程 python 3.5

0x0E loops 循环与列表 >>> words = ['Hello','world','!','good'] >>> counter = 0 >>> maxindex = len(words) -1 >>> while counter <= maxindex: ... word = wo...

python 基础教程之4 while,列表,range

linux python基础教程 python 3.5

0x0B while循环 正常的循环 >>> i = 1 >>> while i <= 5: ... print(i) ... i +=1 ... 1 2 3 4 5 死循环 >>> while 1 == 1: ... print("good") ... good g...

python 基础教程之3 格式化数据,布尔值,if,布尔逻辑

linux python基础教程 python 3.5

0x06 格式化数据 常用的 int() str() float() >>> x = 5 >>> y = x + 3 >>> y = int(str(y) + '2') >>> print(y) 82 >>> float(y) 82.0 0x07 布尔值 pyth...

python 基础教程之2 字符串操作,变量

linux python基础教程 python 3.5

0x04 字符串操作 字符串可以直接用+连接 >>> 'good'+"good" 'goodgood' 数字在加引号以后也是按照字符串来处理 >>> '2'+'2' '22' >>> 1+'2'+3+'4' Traceback (most recent call last): ...