remover espa c3 a7os string python

Solutions on MaxInterview for remover espa c3 a7os string python by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "remover espa c3 a7os string python"
Kellie
20 Jan 2020
1string = "    *****    "
2
3print(string.lstrip());
4# Saída: '*****   '
5
6print(string.rstrip());
7# Saída: '   *****'
8
9print(string.strip());
10# Saída: '*****'