广东郑州西安成都黑马Python培训班黑马python培训好不好
下载地址 https://share.weiyun.com/dHvWwF1o
资料目录 黑马程序员python入门教程19天(美女讲师版) 包含:视频课程-python从0开始学编程(day1-day19) 课件+代码资料-python从0开始学编程(day1-day19) 黑马python基础班代码和课件资料 黑马python就业班代码和课件资料 黑马python基础班视频课程 包含:1-1 Linux基础(119个视频) 1-2 python基础(234个视频) 1-3 面向对象(91个视频) 1-4 项目飞机大战(42个视频) 黑马python就业班视频课程 包含:01 网络编程 02 多任务 03 web服务器v3.1 04 Python高级语法v3.1 05 MySQL数据库v3.1 06 mini-web框架v3.1 07 HTML和CSS 08 首页布局案例和移动布局 09 JavaScriptv 10 jQuery和js库 11 Django框架 12 git版本管理 13 redis数据库 14 天天生鲜Django项目 15 flask框架 16 微信公众号 17 爱家租房项目 18 通用爬虫模块使用 19 MongoDB数据库 20 爬虫scrapy框架及案例 21 数据分析 22 机器学习 23 深度学习 24 数据结构和算法 25 Python网络爬虫 26 机器学习入门篇 27 机器学习入门篇2 28 机器学习提升篇 29 数据挖掘篇 30 深度学习必备原理与实战 31 深度学习必备原理与实战2 32 深度学习必备原理与实战3 33 深度学习必备原理与实战4 34 深度学习项目实战 35 深度学习项目实战2 36 深度学习项目实战3 举例 异常处理 try: pass except Exception,e: print e 其中 e 就是错误错误信息。try 的异常处理这么写就足够用了,还有其他的方法,不常用。 以下是一个获取本地 ip 地址,从数据库查询 ip 的用途,去连接一个 URL,判断这个 URL 是否可以用,并写日志。主要讲了讲 python 操作数据库的常用用法。 #!/usr/bin/env python # -*- coding: utf-8 -*- import os,urllib,MySQLdb,time,platform def log_w(text): logfile = "/tmp/websocket.log" if os.path.isfile(logfile): if (os.path.getsize(logfile)/1024/1024) > 100: os.remove(logfile) now = time.strftime("%Y-%m-%d %H:%M:%S") tt = str(now) + "\t" + str(text) + "\n" f = open(logfile,'a+') f.write(tt) f.close() def get_idcname(ip): try: conn = MySQLdb.connect(host = '192.168.8.43',port=3306,user = 'read_app',passwd = '123456',charset='utf8',conne cursor = conn.cursor()#查询出的结果是元组形式,元组和列表基本一样 #cursor = conn.cursor(cursorclass = MySQLdb.cursors.DictCursor)#查询结果是字典形式 sql = "select host,user from mysql.user where host='%s'" % ip#python中执行sql语句一次只能是一个sql语句,一次只执行 cursor.execute(sql)#执行sql语句 #cursor.executemany("""insert into dist_sniffer.sniffer_order_day values(%s,%s,%s,%s,%s,%s,%s,%s,%s) """,value alldata = cursor.fetchall()#接收sql执行结果,如果是写操作的,这个就不用了 #conn.commit()如果是写操作,需要这个去提交 cursor.close() conn.close()#关闭数据库回话 return alldata[0][0].encode('UTF8')#如果是写操作的话就没有返回值了。 except Exception,e: return 0 def get_ip(): os = platform.system() if os == "Linux": ip = os.popen("/sbin/ifconfig eth0|grep 'inet addr'").read().strip().split(":")[1].split()[0] elif os == "Windows": import wmi c=wmi.WMI() network = c.Win32_NetworkAdapterConfiguration (IPEnabled=1) for interface in network: if interface.DefaultIPGateway: ip = interface.IPAddress[0] return ip #print interface.IPAddress[0],interface.MACAddress,interface.IPSubnet[0],interface.DefaultIPGateway[0],interfa #获取出网的ip地址、MAC地址、子网掩码、默认网关、DNS def web_status(): ip = get_ip() idc_name = get_idcname(ip) url = "http://www.text.com/index.php?idc_ip=%s&idc_name=%s" % (ip,idc_name) get = urllib.urlopen(url) if get.getcode() == 200: aa = int(get.read().strip()) if aa == 1: text = "Webservice return OK" else: text = "Webservice return Error" else: text = "Conect webservice Error" print text log_w(text) if __name__ == "__main__": web_status() 一开始就要养成一个好习惯,这样对以后 python 编程是十分有益的。自己的深切体会。
|