python 函數內置方法short_desc


1. 給函數設置一個文本

 

def action_checked(self, request):
	pass

action_checked.short_desc = "簽到"

# short_desc 給函數設置文本

2. 取出函數的文本內容

text = action_checked.short_desc

#取出函數的函數名
name =action_checked.__name__

3. 打印結果

temp = {'name': func.__name__, 'text': func.short_desc}

print(temp,'######temp')




結果:
{'name': 'action_checked', 'text': '簽到'} ######temp

  

  

 

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM