是否可以将方法名称包装在函数的定义中?我有一个特别长的方法名称,我想知道是否可以像这样包装它:
# method name is my_really_long_method_name_wow_this_is_really_long
def my_really_long_method_name_
wow_this_is_really_long():
pass
我试过这样做,但是我收到了语法错误:
def my_really_long_method_name_\
wow_this_is_really_long():
pass
最佳答案
原文链接:https://www.f2er.com/python/438401.html