文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Python -- 操作字符串[2/3]

2023-01-31 07:40

关注

 

 

 


  1. yuan@ThinkPad-SL510:~$ ipython -nobanner 
  2.  
  3. In [1]: comma_delim_string = "pos1,pos2,pos3" 
  4.  
  5. In [2]: pipe_delim_string = "pipepos1|pipepos2|pipepos3" 
  6.  
  7. In [3]: co 
  8. coerce              compile             continue 
  9. comma_delim_string  complex             copyright 

按Tab会智能补全的不仅仅是ipython哦,去试试,告诉不了解的童鞋

  1. In [3]: comma_delim_string.split(",") 
  2. Out[3]: ['pos1', 'pos2', 'pos3'] 
  3.  
  4. In [4]: pipe_delim_string.sp 
  5. pipe_delim_string.split       pipe_delim_string.splitlines 
  6.  
  7. In [4]: pipe_delim_string.split("|") 
  8. Out[4]: ['pipepos1', 'pipepos2', 'pipepos3'] 

split()方法的典型用法即是把希望作为分割符的字符串(注意:是字符串,不一定是一个)传给它。

  1. yuan@ThinkPad-SL510:~$ ipython -nobanner 
  2.  
  3. In [1]: two_field_string ="8675890,This is a freeform, plain text, string" 
  4.  
  5. In [2]: two_field_string.spli 
  6. two_field_string.split       two_field_string.splitlines 
  7.  
  8. In [2]: two_field_string.split(',',1) 
  9. Out[2]: ['8675890', 'This is a freeform, plain text, string'] 
  10.  
  11. In [3]: two_field_string.split(',',2) 
  12. Out[3]: ['8675890', 'This is a freeform', ' plain text, string'] 

 


  1. yuan@ThinkPad-SL510:~$ ipython -nobanner 
  2.  
  3. In [1]: mixed_case_string = "VOrpal BUnny" 
  4.  
  5. In [2]: mixed_case_string == "vorpal bunny" 
  6. Out[2]: False 
  7.  
  8. In [3]: mixed_case_string.lower() == "vorpal bunny" 
  9. Out[3]: True 
  10.  
  11. In [4]: mixed_case_string == "VORPAL BUNNY" 
  12. Out[4]: False 
  13.  
  14. In [5]: mixed_case_string.upper() == "VORPAL BUNNY" 
  15. Out[5]: True 

upper()和lower()并不是简单的返回字符串的大写和小写,它在字符串的比较上有很大作用,想到了吧?呵呵

 

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯