📜  python convert 从字符串的开头删除空格 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:11.999000             🧑  作者: Mango

代码示例1
## Remove the Starting Spaces in Python
 
string1="    This is Test String to strip leading space"
print (string1.lstrip())