上一页 1 ··· 6 7 8 9 10

mysql用户管理

摘要: MySQL创建用户与授权 MySQL创建用户与授权 一. 创建用户 命令: CREATE USER 'username'@'host' IDENTIFIED BY 'password'; 说明: username:你将创建的用户名 host:指定该用户在哪个主机上可以登陆,如果是本地用户可用loca 阅读全文
posted @ 2019-05-06 13:53 torotoise512 阅读(169) 评论(0) 推荐(0) 编辑

centos7启动mysql

摘要: 启动mysql服务的时候出现这样的错误。 Failed to start mariadb.service: Unit not found. 解决办法: 首先需要安装mariadb-server yum install -y mariadb-server 启动服务 systemctl start ma 阅读全文
posted @ 2019-05-06 13:22 torotoise512 阅读(5475) 评论(0) 推荐(0) 编辑

centos安装python3

摘要: a56爆大奖在线娱乐这里使用的时centos7.2,centos系统本身默认安装有python2.x,版本x根据不同版本系统有所不同,可通过 python --V 或 python --version 查看系统自带的python版本 有一些系统命令时需要用到python2,不能卸载 1、安装依赖包 1)首先安装gcc 阅读全文
posted @ 2019-05-06 09:55 torotoise512 阅读(164) 评论(0) 推荐(0) 编辑

[转载]python学习目录(转至袁先生的博客)

摘要: 目录 目录 一、计算机基础 二、Python基础 三、函数 四、常用模块 五、模块和包 六、面向对象 七、网络编程socket 八、数据库 九、前端 十、Python Web框架 十一、版本控制--GIT 十二、爬虫 十三、前端框架之VUE 十四、量化投资与Python 十五、算法 十六、设计模式 阅读全文
posted @ 2019-05-06 09:02 torotoise512 阅读(339) 评论(0) 推荐(0) 编辑

二维数组赋值

摘要: #创建二维数据并赋值 lists=[] m=3 n=4 for i in range(m): lists.append([i]) for j in range(n): lists[i].append(j) 阅读全文
posted @ 2019-04-26 14:05 torotoise512 阅读(477) 评论(0) 推荐(0) 编辑

【转载】Python日期时间模块datetime详解与Python 日期时间的比较,计算实例代码

摘要: a56爆大奖在线娱乐转载自脚本之家,源网址为:https://www.jb51.net/article/147429.htm 一、Python中日期时间模块datetime介绍 (一)、datetime模块中包含如下类: (二)、datetime模块中包含的常量 二、date类 (一)、date对象构成 1、dat 阅读全文
posted @ 2019-04-26 12:26 torotoise512 阅读(5012) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10