博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 一些数据类型的方法
阅读量:5018 次
发布时间:2019-06-12

本文共 1349 字,大约阅读时间需要 4 分钟。

 
#! /usr/bin/env python #! -*- cording:utf-8 -*- temp="alex" # chengbao=type(temp) #找出当前数据的类型 # print (chengbao) # temp.upper() # #变大写 # temp.lower() # #变小写 #输出str #print (help(type(temp))) #先找到某个对象的类型,再用help列出其内部所有的方法 n1=123 n2=234 #bb=type(n1) print(n1.__add__(n2)) a1="alex" ret=a1.capitalize() #首字母变大写 ret1=a1.center(20,'*') #字符串长度设置为20,用*填充 print(ret1) a2="alex is alph" ret=a2.count('a',0,10) #0-10个字符位置范围内计数 #计算子序列的个数 print(ret) temp="hello" print(temp.endswith('x',0,2)) #判断结尾字符是否为x,0-2位置 content="hello\t9999" print(content) print(content.expandtabs(20)) #中间增加空格 #\t代表type键 制表符 \n换行符 s="alex hello" print(s.find("l")) s="hello{0},age{1}" print(s) new1=s.format("alex",19) print(new1) #{0,}{1}表示占位符,把alex传入{0}19传入{1} #join,连接列表 li=["alex","eric"] #元组也支持 li2=("alex","eric") s="*".join(li) #用_,*连接两个字符串 print(s) a="  alex   " news=s.lstrip()#左空格 news2=s.rstrip()#右空格 print(news) #去掉字符左右空格 # s="alex SB alex" # # ret=s.partition('SB') # # print(ret) #分割字符,元组类型 s="alex SB alex" ret=s.replace("al","bb",1) print(ret) #替换字符,al为bb,1,为从左往右查找第一个替换 s="alexalex" ret=s.split("e") print(ret) #分割 s="aleX" print(s.swapcase()) #大写变小写,小写变大写 s="alex" #索引 print(s[0]) #s里的第一个字符 ret=len(s) #数S的字符数 print(ret) #0<= 0,1 <2 print(s[0:2]) #循环输出元组 s="ddddddddddereregieutrieoreiore" # start=0 # while start
 

 

转载于:https://www.cnblogs.com/aqiuarcadia/p/7294314.html

你可能感兴趣的文章
Android Serivce 高级篇AIDL讲解
查看>>
SpringBoot学习笔记(2):引入Spring Security
查看>>
图片加水印 PDF取缩略图
查看>>
bzoj 4180: 字符串计数
查看>>
安卓--布局设计-计算器
查看>>
Java重写《C经典100题》 --27
查看>>
ABP中的拦截器之EntityHistoryInterceptor
查看>>
【oracle】oracle数据库建立序列、使用序列实现主键自增
查看>>
使用SQLiteDatabase操作SQLite数据库第二种方法
查看>>
vue,一路走来(12)--父与子之间传参
查看>>
css3 选择器的比较(一) -- 以字符串开头
查看>>
实现交换两个变量值的第二种方法
查看>>
英语单词学习备忘转载
查看>>
【C++】单例模式详解
查看>>
文本框根据关键字异步搜索内容
查看>>
SQLServer 基本语法
查看>>
Python入门基础知识(1) :locals() 和globals()
查看>>
python模块之multiprocessing模块, threading模块, concurrent.futures模块
查看>>
css-文字和图片在容器内垂直居中的简单方法
查看>>
杭电3784(继续xxx定律)
查看>>