python
虽千万人 吾往矣
这个作者很懒,什么都没留下…
展开
-
python下载指定版本的idna包
python -m pip install idna==2.10原创 2022-04-24 09:07:31 · 2057 阅读 · 0 评论 -
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version
INSERT INTO report(NAME,keyword,refile,content,DATE,STATUS) VALUES ('%s','%s','%s','%s','%s',0)%("name", "key", "refile", "content",str(datetime.now()))报错错误代码: 1064You have an error in your SQL syntax; check the manual that corresponds to your MySQL se原创 2022-04-22 20:32:04 · 1302 阅读 · 0 评论 -
Python安装torch
直接使用PIP安装找不到可用的版本1、前往官网2、选择对应的配置3、复制到cmd下载原创 2021-05-02 15:30:45 · 339 阅读 · 0 评论 -
Python使用PIP时出现Fatal error in launcher: Unable to create process using ‘“e:\program files\programdata
错误内容Fatal error in launcher: Unable to create process using '"e:\program files\programdata\python3.9\python.exe" "E:\Program Files\ProgramData\Python39\Scripts\pip.exe" ': ???????????解决方案python -m pip install --upgrade pip问题解决PIP存在问题,通过Python更新PI原创 2021-04-27 20:19:34 · 399 阅读 · 0 评论 -
pyCharm撤销和反撤销
撤销:Ctrl+z反撤销:Ctrl+Shift+z刚开始按着Ctrl+y反撤销代码都没了,哎原创 2020-09-06 10:56:51 · 3456 阅读 · 1 评论 -
解决ProgrammingError: You must not use 8-bit bytestrings unless you use a text_factory that can错误
ProgrammingError: You must not use 8-bit bytestrings unless you use a text_factory that can interpret 8-bit bytestrings (like text_factory = str). It is highly recommended that you instead just switch your application to Unicode strings.在连接数据库之后添加cx.text转载 2020-09-06 10:38:48 · 331 阅读 · 0 评论 -
python内置Sqlite使用简介
引入数据库import sqlite3 as sl连接数据库con = sl.connect("user.db")删除数据表con.execute("DROP TABLE USER")创建数据表名称解释INTEGER整数值是全数字(包括正和负)。整数可以是1, 2, 3, 4, 6或 8字节。整数的最大范围(8 bytes)是{-9223372036854775808, 0, +9223372036854775807}。SQLite根据数字的值自动控制整数所占的字节原创 2020-08-31 08:50:29 · 202 阅读 · 0 评论 -
python使用BmobSdk出错
python与js一样类型都是根据值决定的,但是对于BmobSdk来说需要指定类型,我刚开始都是通过字符串值来创建数据表的,当使用python变量对表进行增删查改时出现了很多的错误,主要是python与Bmob类型不匹配,所以当对表进行增删查改时需要指定变量类型str(name)...原创 2020-08-30 22:40:02 · 124 阅读 · 0 评论 -
python获取当前时间
import datetimeday = datetime.datetime.now()day2 = datetime.date.today()print("当前年月日时分秒:", day)print("只查看年月日:", day2)执行结果:当前年月日时分秒: 2018-09-19 21:18:57.132640只查看年月日: 2018-09-19原文链接...转载 2020-08-30 21:54:11 · 127 阅读 · 0 评论 -
python去除首尾的空格strip()
strip是trim掉字符串两边的空格。lstrip, trim掉左边的空格rstrip, trim掉右边的空格str.strip()原文地址转载 2020-08-30 21:46:50 · 1222 阅读 · 0 评论 -
sqlite3.ProgrammingError: You must not use 8-bit bytestrings unless you use a text_factory that can
sqlite3.ProgrammingError: You must not use 8-bit bytestrings unless you use a text_factory that can interpret 8-bit bytestrings (like text_factory = str). It is highly recommended that you instead just switch your application to Unicode strings.不晓得python原创 2020-08-30 21:22:46 · 555 阅读 · 0 评论 -
集成Bmob pythonSDK
在pyCharm新建一个bmob.py文件,然后复制bmob.py到新建文件中引入使用from bmob import *官网案例#coding=utf-8# 导入bmob模块from bmob import *# 新建一个bmob操作对象b = Bmob("appid", "restkey")# 插入一行数据,原子计数、Pointerprint( b.insert( 'Feedback', # 表名 BmobUpdater.increment( "count", #原创 2020-08-30 15:13:15 · 303 阅读 · 0 评论 -
解决UnicodeEncodeError: ‘ascii‘ codec can‘t encode characters in position 0-1: ordinal not in range问题
在文件第一行添加import sysreload(sys)sys.setdefaultencoding('utf8')转载 2020-08-28 14:42:44 · 379 阅读 · 0 评论 -
python支持中文注释
第一行第一句添加#coding:utf-8转载 2020-08-26 10:29:41 · 157 阅读 · 0 评论 -
python基础之文件
打开文件# open(file, mode='r', buffering=-1, encoding_=None, errors=None, newline=None, closefd=True, opener=None)# 使用open函数来打开一个文件# 参数:# file 要打开的文件的名字(路径)# 返回值:# 返回一个对象,这个对象就代表了当前打开的文件# 创建一个...原创 2020-05-04 20:43:11 · 155 阅读 · 0 评论 -
python基础之异常
异常# print('hello')# try:# # try中放置的是有可能出现错误的代码# print(10/0)# except:# # except中放置的是出错以后的处理防暑# print('哈哈哈,出错了~~~')# else:# print('程序正常执行没有错误') # print('你好')# print(1...原创 2020-05-04 20:39:40 · 240 阅读 · 0 评论 -
python基础之对象
类的简介a = int(10) # 创建一个int类的实例b = str('hello') # 创建一个str类的实例# print(a , type(a))# print(b , type(b))# 定义一个简单的类# 使用class关键字来定义类,语法和函数很像!# class 类名([父类]):# 代码块# <class '__main__.MyClass'&...原创 2020-05-04 20:07:45 · 240 阅读 · 0 评论 -
python基础之函数使用
函数简介# 比如有如下三行代码,这三行代码是一个完整的功能# print('Hello')# print('你好')# print('再见')# 定义一个函数def fn() : print('这是我的第一个函数!') print('hello') print('今天天气真不错!')# 打印fn# print(fn) <function fn at...原创 2020-05-03 17:16:39 · 265 阅读 · 0 评论 -
python基础之序列
序列序列是python最基本的数据结构可变序列:列表不可变序列:字符串、元组列表基本操作注意列表的下标不要越界,从0开始列表的索引可以为负数,但是复数从后往前取my_list=[1,2,3,[34,5,3,53,3],334,3]print(my_list)print(my_list[4])切片从已有列表中获取一个子列表,切片赋值必须用序列my_list=[1,2,3,[...原创 2020-05-03 16:34:59 · 157 阅读 · 0 评论 -
python基础之流程控制
条件判断语句条件判断语句(if)if A : B(A为真,执行B)条件判断语句(if-else)age=17if age > 18 : print("你已经成年了")else: print("你还未成年")条件判断语句(if-elif-else)score=17if score > 80 : print("优秀")elif score>...原创 2020-05-02 21:26:23 · 193 阅读 · 0 评论 -
python基础之安装与基本操作
安装安装教程原创 2020-05-02 20:55:46 · 206 阅读 · 0 评论