日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python 宏定义_python Debug宏定义

發布時間:2025/3/19 python 16 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python 宏定义_python Debug宏定义 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

前言

調試python時,常碰到打印信息需手動刪除;且python沒有宏定義.

依據之前使用C的習慣,定義調試模式,僅調試模式下才打印調試信息.

步驟:

1.增添const.py

# -*- coding: utf-8 -*-

import sys

class _const:

class ConstError(TypeError):

pass

class ConstCaseError(ConstError):

pass

def __setattr__(self, name, value):

if name in self.__dict__:

raise self.ConstError("Can't change const.%s" % name)

if not name.isupper():

raise self.ConstCaseError(

"const name '%s' is not all uppercase" % name)

self.__dict__[name] = value

def __delattr__(self, name):

if name in self.__dict__:

raise self.ConstError("can't unbind const(%s)" % name)

raise NameError(name)

sys.modules[__name__] = _const()

2.在python常量定義文件jmeterConst.py中添加const.DEBUG和添加 函數DEBUG_PRINT

# -*- coding: utf-8 -*-

import const

#======================================

#debug print

const.DEBUG=1

不需要打印是只需將const.DEBUG=1 改成const.DEBUG=0

#======================================

def DEBUG_PRINT(*kwargs):

if(const.DEBUG):

print(*kwargs)

3.在其他文件中調用DEBUG_PRINT

導入from jmeterConst import DEBUG_PRINT as DEBUG_PRINT

直接調用DEBUG_PRINT,參數格式與print一致

總結

以上是生活随笔為你收集整理的python 宏定义_python Debug宏定义的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。