哈岁NB 发表于 2022-5-4 21:11:04

python日志

import logging
import os
import random


def init_log(path):
    if os.path.exists(path):
      mode = 'a'
    else:
      mode = 'w'
    logging.basicConfig(
      level=logging.INFO,
      format='%(asctime)s %(filename)s %(lineno)d %(message)s',
      filename=path,
      filemode=mode
    )
    return logging

def guess_number():
    print('********************欢迎进入数字踩踩踩游戏********************')
    start = input('数字区间起始值:')
    end = input('数字区间终止值:')
    if not start.isdigit() or not end.isdigit():
      print('您输入的区间数字为非数字字符!!请重新启动程序。')
      exit()
    else:
      start = int(start)
      end = int(end)
      count = 0
      if start == end:
            print('您输入的区间数字相同!!请重新启动程序。')
            exit()
      elif start > end:
            print('您输入的区间数字大小有误!!请重新启动程序。')
            exit()

      else:
            print('所产生的的随机数字区间为:[{}, {}]'.format(start, end))
            random_number = random.randint(start, end)

            while True:
                count += 1
                number = int(input('请继续输入您猜测的数字:'))
                if number not in range(start,end+1):
                  print('对不起您输入的数字未在指定区间内!!!')
                  continue
                elif number > random_number:
                  init_log('record.txt')
                  print('*********')
                  print('Higher than the anwser')
                  continue
                elif number < random_number:
                  init_log('record.txt')
                  print('*********')
                  print('Lower than the anwser')
                  continue
                elif number == random_number:
                  init_log('record.txt')
                  print('*********')
                  print('恭喜你!只用了{}次就赢得了游戏'.format(count))
                  break

if __name__ == '__main__':
    guess_number()

大佬,想请问一下这个代码为什么可以创建record.txt,但record.txt里面却没有日志

ba21 发表于 2022-5-4 21:28:18

def init_log(path):
    if os.path.exists(path):
      mode = 'a'
    else:
      mode = 'w'
    logging.basicConfig(
      level=logging.INFO,
      format='%(asctime)s %(filename)s %(lineno)d %(message)s',
      filename=path,
      filemode=mode
    )
    logger = logging.getLogger(__name__)
    logger.info("Start print log")

   
    return logging

isdkz 发表于 2022-5-4 21:31:37

本帖最后由 isdkz 于 2022-5-4 21:39 编辑

使用 logging.info 才是写入日志,你那个是初始化日志,

而且 logging 本来就是你导入的库,不需要在 init_log 中返回的
import logging
import os
import random


def init_log(path):
    if os.path.exists(path):
      mode = 'a'
    else:
      mode = 'w'
    logging.basicConfig(
      level=logging.INFO,
      format='%(asctime)s %(filename)s %(lineno)d %(message)s',
      filename=path,
      filemode=mode
    )

def guess_number():
    print('********************欢迎进入数字踩踩踩游戏********************')
    init_log('record.txt')                         # 初始化一次 logging 就可以了
    start = input('数字区间起始值:')
    end = input('数字区间终止值:')
    if not start.isdigit() or not end.isdigit():
      print('您输入的区间数字为非数字字符!!请重新启动程序。')
      exit()
    else:
      start = int(start)
      end = int(end)
      count = 0
      if start == end:
            print('您输入的区间数字相同!!请重新启动程序。')
            exit()
      elif start > end:
            print('您输入的区间数字大小有误!!请重新启动程序。')
            exit()

      else:
            print('所产生的的随机数字区间为:[{}, {}]'.format(start, end))
            random_number = random.randint(start, end)

            while True:
                count += 1
                number = int(input('请继续输入您猜测的数字:'))
                if number not in range(start,end+1):
                  print('对不起您输入的数字未在指定区间内!!!')
                  continue
                elif number > random_number:
                  print('*********')
                  print('Higher than the anwser')
                  logging.info('Higher than the anwser')   # 使用 logging.info
                  continue
                elif number < random_number:
                  print('*********')
                  print('Lower than the anwser')
                  logging.info('Lower than the anwser')      # 使用 logging.info
                  continue
                elif number == random_number:
                  print('*********')
                  print('恭喜你!只用了{}次就赢得了游戏'.format(count))
                  logging.info('恭喜你!只用了{}次就赢得了游戏'.format(count))# 使用 logging.info
                  break

if __name__ == '__main__':
    guess_number()

Twilight6 发表于 2022-5-4 21:34:40



百度了一下,需要调用 info、debug、warning 的命令函数才能写入文件或者输出到控制台

另外最后一个你输入的是中文字符的话,需要配置源代码文件的 encoding 否则会导致乱码:

   参考文章   

参考代码(这里用 info 函数进行写入):

import logging
import os
import random


def init_log(path):
    if os.path.exists(path):
      mode = 'a'
    else:
      mode = 'w'
    logging.basicConfig(
      level=logging.INFO,
      format='%(asctime)s %(filename)s %(lineno)d %(message)s',
      filename=path,
      filemode=mode
    )
    return logging

def guess_number():
    print('********************欢迎进入数字踩踩踩游戏********************')
    start = input('数字区间起始值:')
    end = input('数字区间终止值:')
    if not start.isdigit() or not end.isdigit():
      print('您输入的区间数字为非数字字符!!请重新启动程序。')
      exit()
    else:
      start = int(start)
      end = int(end)
      count = 0
      if start == end:
            print('您输入的区间数字相同!!请重新启动程序。')
            exit()
      elif start > end:
            print('您输入的区间数字大小有误!!请重新启动程序。')
            exit()

      else:
            print('所产生的的随机数字区间为:[{}, {}]'.format(start, end))
            random_number = random.randint(start, end)

            while True:
                count += 1
                number = int(input('请继续输入您猜测的数字:'))
                if number not in range(start,end+1):
                  print('对不起您输入的数字未在指定区间内!!!')
                  continue
                elif number > random_number:
                  init_log('record.txt').info("Higher than the anwser")
                  print('*********')
                  print('Higher than the anwser')
                  continue
                elif number < random_number:
                  init_log('record.txt').info("Lower than the anwser")
                  print('*********')
                  print('Lower than the anwser')
                  continue
                elif number == random_number:
                  init_log('record.txt').info("恭喜你!只用了{}次就赢得了游戏".format(count))
                  print('*********')
                  print('恭喜你!只用了{}次就赢得了游戏'.format(count))
                  break

if __name__ == '__main__':
    guess_number()

哈岁NB 发表于 2022-5-4 21:38:49

isdkz 发表于 2022-5-4 21:31
使用 logging.info 才是写入日志,你那个是初始化日志

那请问一下,我该怎样修改才能把判断的相应信息写入日志呢

isdkz 发表于 2022-5-4 21:41:17

本帖最后由 isdkz 于 2022-5-4 21:42 编辑

哈岁NB 发表于 2022-5-4 21:38
那请问一下,我该怎样修改才能把判断的相应信息写入日志呢

init_log 只需要在主函数开头调用一次来初始化 logging,

后面你要写入日志就调用 logging.info("这里写你要写入的日志") 就可以了

哈岁NB 发表于 2022-5-4 21:42:08

isdkz 发表于 2022-5-4 21:31
使用 logging.info 才是写入日志,你那个是初始化日志,

而且 logging 本来就是你导入的库,不需要在 in ...

明白了,感谢感谢

hornwong 发表于 2022-5-5 12:59:06

{:5_106:}
页: [1]
查看完整版本: python日志