字符串分割函数:rpartition
来源:/django/apps/config.py
class AppConfig(object):
def __init__(self, app_name, app_module):
self.name = app_name
self.module = app_module
if not hasattr(self, 'label'):
self.label = app_name.rpartition(".")[2]
函数功能用一个例子来说明
image.png说明
这个函数的输出一定是一个有三个元素的元组。一般用来取最后一个单词比较方便。
网友评论