Python3-2020:基本数据类型

Posted csjin-study

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3-2020:基本数据类型相关的知识,希望对你有一定的参考价值。

1.数字

#例如
age = 18

2.字符串

#字符串
a = aaa
b = "bbb"

2.1字符串常用的功能

  • 移除空白
  • 分割
  • 长度
  • 索引
  • 切片

2.1.1  capitalize 将字符串的第一个字符转换为大写

技术图片capitalize

2.1.2 center(width, fillchar)-居中显示

技术图片
    ‘‘‘
    center(width, fillchar)-居中显示
    返回一个指定的宽度 width 居中的字符串,fillchar 为填充的字符,默认为 
    空格。
    ‘‘‘
    print("hello world".center(20))
    print("hello world".center(20,"#"))

#-------------------------------------------------------
    hello world     
####hello world#####
center

2.1.3 count(str, beg= 0,end=len(string)) 返回 str 在 string 里面出现的次数,如果 beg 或者 end 指定则返回指定范围内 str 出现的次数

技术图片
    ‘‘‘
    count(str, beg= 0,end=len(string)) - 子序列个数  
    返回 str 在 string 里面出现的次数,如果 beg 或者 end 指定则返回指定范围内 str 出现的次数
    ‘‘‘
    print("hello world".count("l"))
    print("hello world".count("a"))
#---------------------------------------------
3
0
count

2.1.4 startswith(substr, beg=0,end=len(string)) 检查字符串是否是以指定子字符串 substr 开头,是则返回 True,否则返回 False。如果beg 和 end 指定值,则在指定范围内检查

技术图片
    ‘‘‘
    startswith(substr, beg=0,end=len(string))
    检查字符串是否是以指定子字符串 substr 开头,是则返回 True,否则返回 False。如果beg 和 end 指定值,则在指定范围内检查
    ‘‘‘
    print("hello world".startswith("h"))
    # True
    print("hello world".startswith("a"))
    # False
    print("hello world".startswith("h",1,5))
    # False

#-------------------------------------------------------------------
True
False
False
startswith

 

以上是关于Python3-2020:基本数据类型的主要内容,如果未能解决你的问题,请参考以下文章

Python3-2020-测试开发-5- 基本运算符和复合运算符

如何为 apollo 客户端生成片段类型?

c_cpp Robolution基本代码片段

在代码片段中包含类型转换

Unity中Shader的三种基本类型

在Android中将数据从基本活动发送到片段[重复]