VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • python开发_大小写转换,首字母大写,去除特殊字符(2)

运行效果:

Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:03:43) [MSC v.1600 32 bit (Intel)] on win32

Type "copyright", "credits" or "license()" for more information.

>>> ================================ RESTART ================================

>>>

abcd小写转大写: ABCD

DEFG大写转小写: defg

goodBoy只大写第一个字母: GoodBoy

hello_world去掉中间的'_': helloworld

去除'hello_for_our_world'中的'_',并且把从第一个'_'以后的单词首字母大写: helloForOurWorld

去除'hello__our_world_'中的'_',并且把从第一个'_'以后的单词首字母大写: helloOurWorld


相关教程