上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页
摘要: 1.https://www.tutorialspoint.com/unix_terminal_online.php 2.https://www.tutorialspoint.com/index.htm 进入点CODING GROUND 选择系统类型 ttps://www.tutorialspoint 阅读全文
posted @ 2019-03-04 11:25 北向。 阅读(4003) 评论(0) 推荐(0) 编辑
摘要: 步骤: 1.File -->Settings 2.选择 File and Code Templates -> Files -> Python Script 文件头注释信息代码样式: #!/usr/bin/env python3# encoding: utf-8'''@author: yfacescl 阅读全文
posted @ 2019-03-01 10:21 北向。 阅读(738) 评论(0) 推荐(0) 编辑
摘要: 一、scp命令的使用 1.传输文件(不包括目录) 命令格式:scp 源文件路径目录/需要传输的文件 目标主机的用户名@目标主机IP/主机别名:目标主机存储目录 举个例子:scp /root/ceshi/apache-tomcat-8.5.9/webapps/ROOT.war root@p2:/roo 阅读全文
posted @ 2019-02-25 10:29 北向。 阅读(456) 评论(0) 推荐(0) 编辑
摘要: python实现连接数据库mysql的步骤: 一、引入MySQLdb 二、获取与数据库的连接 三、执行SQL语句和存储过程 四、关闭数据库连接 1.什么是MySQLdb? MySQLdb是用于python连接mysql数据库的接口; 2.连接数据库前确认事项: (1)数据库名:testdb (2)数 阅读全文
posted @ 2019-02-22 14:52 北向。 阅读(1891) 评论(0) 推荐(0) 编辑
摘要: TypeError: 'NoneType' object is not subscriptable --> 原因:变量使用了系统内置的关键字list 解决:重新定义下这个变量 阅读全文
posted @ 2019-02-22 11:47 北向。 阅读(80897) 评论(0) 推荐(0) 编辑
摘要: 一、需求调研阶段 1.从产品定位出发 简单说就是产品为了满足哪些人的哪些需求做的;核心价值-->核心需求 2.用户反馈 (1)直接反馈 用户直接提出需求 (2)间接反馈 通过对用户行为习惯(如习惯、偏好、使用流程等)的分析来获取用户的需求信息 3.竞争企业 竞争对手的产品优势及不足也是产品经理需求来 阅读全文
posted @ 2019-02-18 17:43 北向。 阅读(686) 评论(0) 推荐(0) 编辑
摘要: 1.掌握内容 (1)查看目录内容 - - ls (2)切换目录 - - cd (3)创建和删除操作 - - touch - - rm - - mkdir (4)拷贝和移动文件 - - cat - - more - - grep (5)其他 - - echo - - 重定向 > 和 >> - - 管道 阅读全文
posted @ 2019-02-18 17:31 北向。 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 举个例子:比如我们要实现根据当前时间的年月日来新建目录来存放每天的日志,当前时间作为日志文件名称;代码如下: 阅读全文
posted @ 2019-02-18 15:47 北向。 阅读(4500) 评论(0) 推荐(0) 编辑
摘要: TypeError:can only concatenate list (not "str") to list: 类型错误:只能将list类型和list类型联系起来,而不是str类型; 解决方法: (1)加入list用append添加。 (2)类似这样的写法:"/".join([root_path, 阅读全文
posted @ 2019-02-16 14:32 北向。 阅读(82431) 评论(1) 推荐(0) 编辑
摘要: os.path 1.返回当前目录 举个例子: (1)给出一个目录名称,返回绝对路径 project_path = "Exercise" path = os.path.dirname(os.path.abspath(project_path)) 解析: os.path.dirname(path)是返回 阅读全文
posted @ 2019-02-16 09:51 北向。 阅读(719) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页