嗨,我不知道如何做到这一点,在这个例子中,我想得到所有最后的字符,直到我找到“”字符,通常在这种方式工作,但似乎键入“”内的分割函数不工作,程序给我一个错误。那么如何得到所有最后的字符,直到我找到“”从结束开始?
string = 'C:\user\computer\myfile.txt' a = string.split('\')
mqkwyuun1#
用“\”转义字符串:
string = 'C:\\user\\computer\\myfile.txt' a = string.split('\\') print(a) # Output ['C:', 'user', 'computer', 'myfile.txt']
1条答案
按热度按时间mqkwyuun1#
用“\”转义字符串: