remover espa c3 a7os string python

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

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: '*****'