摘要: 阅读全文
posted @ 2019-11-20 17:04 HarsonLee 阅读(143) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-06-27 13:57 HarsonLee 阅读(2) 评论(0) 推荐(0) 编辑
摘要: #迭代器,取值只能用next方法,不能随意取值name = iter([11,22,33,44])print(name.__next__())print(name.__next__())print(name.__next__())#生成器,函数含有yield则为生成器,生成器的返回值为迭代器def 阅读全文
posted @ 2019-05-17 17:27 HarsonLee 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 安装步骤可借鉴https://www.cnblogs.com/qfb620/p/4577255.html 1、安装后发现用Navicat无法连接数据库显示报错ORA-28547:connection to server failed,probable Oracle Net admin error 上 阅读全文
posted @ 2019-05-10 11:31 HarsonLee 阅读(583) 评论(0) 推荐(0) 编辑
摘要: 一、set集合#!/usr/bin/env python# *_*coding:utf-8 *_*# Author: harsonold_dict = { "#1": {'hostname': 'c1', 'cpu_count': 2, 'mem_capicity': 80}, "#2": {'ho 阅读全文
posted @ 2019-05-08 17:03 HarsonLee 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 1、字符串内置功能练习#!/usr/bin/env python# *_*coding:utf-8 *_*# Author: harsonname = 'harson'name =str('harson')#type代表类型print(type(name))#dir取出当前包含的元素print(di 阅读全文
posted @ 2019-04-26 16:53 HarsonLee 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 1、python的简介 python的创始人为吉多·范罗苏姆(Guido van Rossum)。1989年的圣诞节期间,吉多·范罗苏姆为了在阿姆斯特丹打发时间,决心开发一个新的脚本解释程序,作为ABC语言的一种继承。 2、第一句python语言-hello world! 1)安装python,li 阅读全文
posted @ 2019-04-26 16:45 HarsonLee 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 可能是下载过程中出现错误,重新执行docker pull ubuntu,在执行docker run -i -t ubuntu /bin/bash就OK了。 阅读全文
posted @ 2019-04-03 08:44 HarsonLee 阅读(2021) 评论(0) 推荐(0) 编辑