Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道这是否可以使用 MySQL。我需要一些帮助来用 MySQL 做这件事。
这是python代码
def getID(episode_id,seperator = "_"): x = episode_id.split(seperator) sep_id = max(x, key=len) return sep_id print getID("AK0033_A")