- 博客(6)
- 收藏
- 关注
转载 python的学习之路(四)
#迭代器,取值只能用next方法,不能随意取值name = iter([11,22,33,44])print(name.__next__())print(name.__next__())print(name.__next__())#生成器,函数含有yield则为生成器,生成器的返回值为迭代器def cash_money(acount): while acount>0: ...
2019-05-17 17:27:00 100
转载 安装oracle数据库11g及问题解决
安装步骤可借鉴https://www.cnblogs.com/qfb620/p/4577255.html 1、安装后发现用Navicat无法连接数据库显示报错ORA-28547:connection to server failed,probable Oracle Net admin error 上网一查原来是oci.dll版本不对。因为Navicat是通过Oracle客户端连接...
2019-05-10 11:31:00 162
转载 python的学习之路(三)
一、set集合#!/usr/bin/env python# *_*coding:utf-8 *_*# Author: harsonold_dict = { "#1": {'hostname': 'c1', 'cpu_count': 2, 'mem_capicity': 80}, "#2": {'hostname': 'c1', 'cpu_count': 2, 'mem_cap...
2019-05-08 17:03:00 95
转载 python的学习之路(二)
1、字符串内置功能练习#!/usr/bin/env python# *_*coding:utf-8 *_*# Author: harsonname = 'harson'name =str('harson')#type代表类型print(type(name))#dir取出当前包含的元素print(dir(name))#contains包含类似于inresult = name.__conta...
2019-04-26 16:53:00 83
转载 python的学习之路(一)
1、python的简介 python的创始人为吉多·范罗苏姆(Guido van Rossum)。1989年的圣诞节期间,吉多·范罗苏姆为了在阿姆斯特丹打发时间,决心开发一个新的脚本解释程序,作为ABC语言的一种继承。 2、第一句python语言-hello world! 1)安装python,linux系统自带python,windows系统可以在官网直接下载3.x或者...
2019-04-26 16:45:00 97
转载 当运行docker run -i -t ubuntu /bin/bash时,提示报错Error response from daemon: EOF?
可能是下载过程中出现错误,重新执行docker pull ubuntu,在执行docker run -i -t ubuntu /bin/bash就OK了。 转载于:https://www.cnblogs.com/harsonlee/p/10646607.html
2019-04-03 08:44:00 678
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人