摘要:
如题:win10电脑上安装oracle 当服务器提供服务。之前几天用的好好的,结果刚刚连接不上了。郁闷了,什么都没有改动。默认数据库服务是开机自启动。 结果真有前辈遇到这样的情况:https://www.cnblogs.com/loong-hon/p/10832143.html 修改方式就是list 阅读全文
摘要:
(基础环境:centos7+python3.8) 1 python3安装cx_Oracle pip源.使用国内源真快 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple cx_Oracle 2 下载oracleclientbase (ora 阅读全文
摘要:
(基础环境:centos7+python3.8) [root@localhost untitled2]# pip3 list Package Version appdirs 1.4.3 click 7.1.1 distlib 0.3.0 filelock 3.0.12 Flask 1.1.1 its 阅读全文
摘要:
pip国内源: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-packagecentos 安装多版本python 默认pip3 list :pip ,setuptoolscentos安装cx_oracle及oraclebas 阅读全文
摘要:
def begin_end(old): """ 用来对其他函数进行扩展,使其他函数可以在执行前打印开始执行,执行后打印执行结束 :param old: 要扩展的函数对象 :return: """ # 创建一个新函数 def new_function(*args,**kwargs): print("开 阅读全文
摘要:
def make_averager(): nums=[] def averager(n): nums.append(n) return sum(nums)/len(nums) return averager averager = make_averager() print(averager(10)) 阅读全文
摘要:
def extendList(val, list=[]): list.append(val) return list list1 = extendList(10) list2 = extendList(123,[]) list3 = extendList('a') print ("list1 = % 阅读全文
摘要:
access to xmlhttpRequet at http://url (redirectd from http://url) from origin http://url has been blocked by CORS policy:No 'Access-Control-Allow-Orig 阅读全文
摘要:
http://127.0.0.1:5000/login 或者http://127.0.0.1:5000/ 触发登录cas http://127.0.0.1:5000/logout 触发 注销cas操作。 但是有时候登录提示:http://127.0.0.1:5000/login/?ticket=ST 阅读全文