python去掉字符串左边的0,Python3基础 str lstrip 去掉字符串左边的空格

Python : 3.7.0

OS : Ubuntu 18.04.1 LTS

IDE : PyCharm 2018.2.4

Conda : 4.5.11

typesetting : Markdown

code

coder@Ubuntu:~$ source activate py37

(py37) coder@Ubuntu:~$ ipython

Python 3.7.0 (default, Jun 28 2018, 13:15:42)

Type 'copyright', 'credits' or 'license' for more information

IPython 6.5.0 -- An enhanced Interactive Python. Type '?' for help.

In [1]: my_str = ' hello WORLD'

In [2]: my_str

Out[2]: ' hello WORLD'

In [3]: my_str.lstrip()

Out[3]: 'hello WORLD'

In [4]: exit

(py37) coder@Ubuntu:~$ source deactivate

coder@Ubuntu:~$

resource

[文档] docs.python.org/3

[规范] www.python.org/dev/peps/pep-0008

[规范] zh-google-styleguide.readthedocs.io/en/latest/google-python-styleguide/python_language_rules

[源码] www.python.org/downloads/source

[ PEP ] www.python.org/dev/peps

[平台] www.cnblogs.com

[平台] gitee.com

Python具有开源、跨平台、解释型、交互式等特性,值得学习。

Python的设计哲学:优雅,明确,简单。提倡用一种方法,最好是只有一种方法来做一件事。

代码的书写要遵守规范,这样有助于沟通和理解。

每种语言都有独特的思想,初学者需要转变思维、踏实践行、坚持积累。

SqlSever基础 ltrim函数 除去字符串左边的空格,右边的中间的不管

镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ ...

Python3基础 str 通过拆分字符串与插入新的内容形成新的字符串

Python : 3.7.0          OS : Ubuntu 18.04.1 LTS         IDE : PyCharm 2018.2.4       Conda ...

Python3基础 str for 输出字符串中的每个字符

Python : 3.7.0          OS : Ubuntu 18.04.1 LTS         IDE : PyCharm 2018.2.4       Conda ...

Python3基础 str ";";"; 多行字符串

Python : 3.7.0          OS : Ubuntu 18.04.1 LTS         IDE : PyCharm 2018.2.4       Conda ...

Python3基础之数据类型(字符串和列表)

1.Python字符串方法 1.1.如何在Python中使用字符串 a.使用单引号(') 用单引号括起来表示字符串,例如: str1="this is string"; print ...

C++去掉字符串中首尾空格和所有空格

c++去掉首尾空格是参考一篇文章的,但是忘记文章出处了,就略过吧. 去掉首尾空格的代码如下: void trim(string &s) { if( !s.empty() ) { s.erase ...

as3中去掉字符串两边的空格,换行符

as3 去掉字符串两边的空格,换行符,方法一  ActionScript Code  1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20   pub ...

C++去掉字符串首尾的 空格 换行 回车

/* *去掉字符串首尾的 \x20 \r \n 字符 */ void TrimSpace(char* str) { ; char *end = str; char *p = str; while(*p ...

C++ 去掉字符串的首尾空格和全部空格

#include #include using namespace std; //去掉收尾空格string& ClearHeadTa ...

随机推荐

CSS魔法堂:不得不说的Containing Block

前言  中提到在没有floated兄弟盒子时,line box的左右边框会与所属的cont ...

iOS - iOS 适配

前言 什么是适配: 适应.兼容各种不同的情况. iOS 开发中,适配的常见种类: 1)系统适配, 针对不同版本的操作系统进行适配. 2)屏幕适配,针对不同大小的屏幕尺寸进行适配. iPhone 的尺寸 ...

UniversalApp启动页面设置

在新建的一个UniversalApp中,我在Shared项目下添加了一个页面,新建的页面名称为InitPage.xaml,现在我想把InitPage.xaml作为起始页,但是在配置文件中未找到设置启动 ...

House Robber II——Leetcode

After robbing those houses on that street, the thief has found himself a new place for his thievery ...

hdu 3339 In Action

http://acm.hdu.edu.cn/showproblem.php?pid=3339 这道题就是dijkstra+01背包,先求一遍最短路,再用01背包求. #include

Server酱微信推送中的问题

1.写在URL的文字就是不在微信端显示 当时为了明显提示写了个这个:后来发现1111不能显示,去掉两边的就可以了, 2.输出到微信端的文字不换 ...

topcoder srm 630 div1 (2-SAT and SCC template)

problem1 link 首先计算任意两点的距离.然后枚举选出的集合中的两个点,判断其他点是否可以即可. problem2 link 假设字符串为$s$,长度为$n$.那么对于$SA$中的两个排名$ ...

Prometheus 入门与实践

原文链接:https://www.ibm.com/developerworks/cn/cloud/library/cl-lo-prometheus-getting-started-and-practi ...

【MySQL】锁——查看当前数据库锁请求的三种方法 20

MySQL提供了查看当前数据库锁请求的三种方法:1. show  full  processlist命令  观察state和info列 2. show engine  innodb status\G ...

解决 vs2010问题 error MSB8008: 指定的平台工具集(v110)未安装或无效

一次编译程序时.出现故障 >------ 已启动生成: 项目: PhotoStore, 配置: Debug Win32 ------ 1>生成启动时间为 2013-01-15 18:10: ...

你可能感兴趣的:(python去掉字符串左边的0)