码迷,mamicode.com
首页 > 编程语言 > 详细

python---help

时间:2017-03-07 11:37:51      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:使用   函数   需求   str   world   ring   string   百度   用法   

1、查看一个内置函数的用法时,首先使用help,会比上百度来的快且准;

2、当一个内置函数的功能不能满足自己的需求,首先使用help,查看内置函数是否有可选参数,也许可以满足需求,只是我们不知道而已;

例如:

给出字符串:string = "Tom: hello world: Amy";

实现获取"Tom"和”hello world: Amy"的功能;

解决方案:

people, info = string.split(sep=":", maxsplit=1)

注:一般知道内置函数split,但不知道该函数有个可选参数maxsplit用来控制分割为几部分

 

python---help

标签:使用   函数   需求   str   world   ring   string   百度   用法   

原文地址:http://www.cnblogs.com/heiao10duan/p/6513685.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!