Python-Log-note.md】的更多相关文章

Python Function Note #汉诺塔问题Python实现 def my_move(n, a, b, c): if n == 1: print(a + ' --> ' + c) else: my_move(n-1, a, c, b)#将前n-1个盘子从a放到b my_move(1, a, b, c)#将最下面的盘子从a放到c my_move(n-1, b, a, c)#将b上的n-1个盘子放到c上 return #杨辉三角Python实现 def my_triangles(max):…
python的日志模块为logging,它可以将我们想要的信息输出保存到一个日志文件中. # cat log import logging logging.debug('This is debug message') logging.info('This is info message') logging.warning('This is warring message') # python log WARNING:root:This is warring message 默认情况下,loggi…
#MySQL for Python(MySQLdb) Note #切记不要在python中创建表,只做增删改查即可. #步骤:(0)引用库 -->(1)创建连接 -->(2)创建游标 -->(3)选择数据库 -->(4)执行语句 -->(5)关闭连接 #(0)引用库 import MySQLdb #(1)创建连接 con = MySQLdb.connect(user = ",host = "127.0.0.1") #(2)创建游标 cur = c…
python log的处理方式 配置文件 #! /usr/bin/env python # -*- coding: utf-8 -*- # __author__ = "Q1mi" """ logging配置 """ import os import logging.config # 定义三种日志输出格式 开始 standard_format = '[%(asctime) -s][%(threadName)s:%(thread)…
刚用Python log模块写了一个例子,记录一下. import logging import logging.handlers import os from datetime import datetime basedir=r'D:\log' LOG_LEVEL = 0 resultPath = os.path.join(basedir,'result') if not os.path.exists(resultPath): os.mkdir(resultPath) LOG_PATH = o…
Python之模块 包就是文件夹:包可以有多级: 模块就是 xxx.py文件:可以创建自己的模块,并且导入它们,模块的名字就和文件的名字相同: Python使用import语句导入一个模块. import mathprint math.sqrt(16)  # => 4 只希望导入用到的math模块的某几个函数 from math import ceil, floorprint ceil(3.7)   # => 4.0print floor(3.7)  # => 3.0 # 从模块中导入所…
文件结构 - run.py - b -- __init__.py run.py import logging import b log = logging.getLogger("") tmp = logging.FileHandler('log.txt') log.addHandler(tmp) log.warning(") sample = b.b() print sample.foo() __init__.py import logging log = logging.g…
很久之前我在Github上搞了一个LeetCode的仓库,但一直没怎么维护.最近发现自己刷了不少LC的题目了,想搬运到这个仓库上. 玩Github最重要的当然是写README了,MD的逼格决定了项目牛逼不牛逼.但是让我一个一个去手写项目中的链接那是不可能的,这辈子都不可能手写,只有写脚本自动生成才能满足装逼的样子. import os import os.path # 根目录 rootdir="E:/gitTest/LeetCode/" list=[] result=[] # 定义链接…
# _*_ coding:utf-8 _*_ import logging import os import sys import time log_path = os.path.dirname(sys.path[0]) + '/log_path' class Log(): def __init__(self): filename = 'test_' + time.strftime('%Y_%m_%d_%H%M%S') + '.log' # 设置log名 self.logname = os.pa…
描述 log() 方法返回x的自然对数,x > 0. 语法 以下是 log() 方法的语法: import math math.log( x ) 注意:log()是不能直接访问的,需要导入 math 模块,通过静态对象调用该方法. 参数 x -- 数值表达式. 返回值 返回x的自然对数,x>0. 实例 以下展示了使用 log() 方法的实例: #!/usr/bin/python3 import math # 导入 math 模块 print ("math.log(100.12) :…