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

Python学习第三天

时间:2018-08-06 17:52:43      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:输入   ima   字符   字符串   print   cte   ase   upper   空格   

expandtabs():  # \t为制表符,\n为换行。断句20

  test="1234567\t89"

  v=test.expandtabs(20)

  print(v,len(v))

isdecimal():  #当前输入的是不是数字

isdigit():  #当前输入的是不是数字

isnumeric():  #判断当前输入的是否是数字

  test="②"

  v1=test.isdecimal()

  v2=test.isdigit()

  print(v1,v2)

isidentifier():  #输入的是否是,字母、数字、下划线、标识符、def、class

islower():  #判断是否为小写

isspace():  #判断是否全部为空格

  test="      "

  v=test.isspace()

  print(v)

istitle():  #判断是不是标题

title():  #转换成标题

  test="Return True if all cased characters in S are uppercase and there is"

  v1=test.istitle()

  print(v1)

  v2=test.title()

  print(v2)

join():  #将字符中的每一个元素按照指定分隔符进行拼接

  test="nishifeng"

  print(test)

  v="  ".join(test)

  print(v)

center():  #字符串居中,在字符串中左右排列字符,共N位

ljust():  #在字符串后面 

Python学习第三天

标签:输入   ima   字符   字符串   print   cte   ase   upper   空格   

原文地址:https://www.cnblogs.com/libint/p/9431467.html

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