마지막 주소 자르기 예제

url = 'http://a/b/c/d/e'

fixurl = url[:url.rfind('/')]

==> http://a/b/c/d


문자열 모두 교체

'he hello'.replace('h','')

=> 'e ello'

  • No labels