Python
文章平均质量分 54
王小葵(●—●)
认认真真做事,脚踏实地做人!
展开
-
Python-1
Python-1Python方式一:#! /usr/bin/env python(env作用:找环境变量,即到整个系统中找一个是Python的环境变量)方式二:#! /usr/bin/Python(写死了)作用:当Python变成一个可执行程序时,必须要在第一行声明解释器是什么,即告诉操作系统这段代码将通过什么方式来解释这段代码。注释:当前行注释:#被注释内容多行注释:三个单引号或三个双引号 ...原创 2018-04-15 23:32:40 · 190 阅读 · 0 评论 -
笨办法 学python 习题11 input()用法及end=''的作用
主要内容:1)input() :python向编码中输入数值内容2)end=’'的作用告诉print不要用换行符结束这一行跑到下一行去遇到的错误1)SyntaxError: invalid character in identifier:语法错误:标识符中的字符无效,标点符号弄成汉字的了2)SyntaxError: invalid syntax 无效语法,,end后面忘加等号了prin...原创 2019-01-06 23:27:04 · 2318 阅读 · 0 评论 -
笨办法学python 习题10 转义序列
遇到的问题1)IndentationError: unexpected indent:缩进错误解决:把编码前面多余的空格删掉今天习题练习的编码: #转义序列 tab_1="\tMy name is MoonWong." n_1="If you miss the train I'm on\nYou will know that i am gone." xiegang_...原创 2019-01-06 00:07:37 · 202 阅读 · 0 评论 -
笨办法学python 习题8、9(format()、三双引号和三单引号)
#format():formatter="{}{}{}{}"print(formatter.format(1,2,3,4))#给参数赋值字符串print(formatter.format("one", "two", "three", "four"))#赋值为Ture 、Fales(python的关键字) 首字母要大写,不然报错print(formatter.format(True,...原创 2019-01-05 00:01:36 · 2105 阅读 · 0 评论 -
pycharm快捷键
用到一个加一个:导包:alt+enter撤销与反撤销:ctrl+z, ctrl+shift+z缩进、不缩进: tab,shift+tab运行:shift+F10原创 2018-07-02 17:56:38 · 194 阅读 · 0 评论 -
python+request 京东商品信息爬取
def get_commodity(keyword,page): start_url='https://search.jd.com/Search?keyword={}&enc=utf-8&qrst=1&rt=1&stop=1&vt=2&page={}&click=0'.format(str(keyword),str(page)) ...原创 2018-05-22 20:46:19 · 1760 阅读 · 0 评论 -
bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: lxml. Do you need
若使用PycharmIDE解決:在setting-->project-->project Interpreter,点+,添加lxml,若最新版本不可以的话,可尝试旧版本的lxml.原创 2018-05-22 16:47:59 · 202 阅读 · 0 评论 -
Flask 笔记(一)
1、pycharm格式化样式快捷键:alt+command+L1、 flask目录:temolates 存放视图模板目录:Spider 爬虫脚本信息目录:static 存放视图样式App.py2、 增加两个路由和视图函数 3、 url_for(‘路径’):url_for(‘.services’):前面的点指:对当前python包的引用路径,services指对应方法名称静态文件引用:<...原创 2018-05-26 09:41:00 · 449 阅读 · 1 评论 -
Python WindowsError: [Error 3]
Python WindowsError: [Error 3] The system cannot find the file specified when trying to rename解决:文件路径没有找到,检查路径是否存在,是否符合要求,是否有空格啥的可以利用一个判断语句,验证路径是否存在,若不存在,创建文件路径:path="文件路径"if not os.path.exists(path)...原创 2018-05-15 09:37:44 · 8127 阅读 · 0 评论 -
SyntaxError: invalid syntax
python 3.5SyntaxError: invalid syntax 错误:解决:核实代码语法是否错误,比如说:左右括号不完整。原创 2018-05-18 23:41:42 · 6212 阅读 · 0 评论 -
笨办法学python 习题12 input方法及pydoc的用法
接昨天input()方法的使用,今天进一步介绍input()方法的使用,在传参的过程中直接添加输入的提示信息。 #input()中直接加参数描述,提示用户输入对应的内容 author=input("七里香是谁唱的?") whos=input("最想看谁的演唱会?") where=input("最想去的一个城市是哪里?") print(f"王小妮,七里原创 2019-01-07 23:16:02 · 1761 阅读 · 1 评论