赞
踩
“”"
4.表达式’aaasdf’.lstrip(‘as’)的值为:
表达式’aaasdf’.lstrip(‘af’)的值为:
表达式’aaasdf’.strip(‘af’)的值为:
表达式’aaasdf’.rstrip(‘af’)的值为:
“”"
#test
print(‘aaasdf’.lstrip(‘as’)) #df
print(‘aaasdf’.lstrip(‘af’)) #sdf
print(‘aaasdf’.strip(‘af’)) #sd
print(‘aaasdf’.rstrip(‘af’)) #aaasd
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。