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

Python字符串的使用(中)

时间:2018-02-27 01:22:03      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:img   使用   字母   ide   image   结果   inf   info   style   

#!/usr/bin/env python
# -*- coding:utf-8 -*-
#字符串的基本用法
#制表符 分组
test = "A\tB\tC\t\D\nAAAAAA\tBBBBBB\tCCCCCC\tDDDDDD"
print(test.expandtabs(10))
#是否只包含字母或者汉字
test1 = "dasgdsEF实打实E"
print(test1.isalpha())
#判断字符串是否为数字  isdigit()功能强大能识别符号  isnumeric()功能更强大 可识别中文
t1 = "2"
t2 = ""
t3 = ""
v1 = t1.isdecimal()
v2 = t1.isdigit()
v3 = t1.isnumeric()
print(v1,v2,v3)
v1 = t2.isdecimal()
v2 = t2.isdigit()
v3 = t2.isnumeric()
print(v1,v2,v3)
v1 = t3.isdecimal()
v2 = t3.isdigit()
v3 = t3.isnumeric()
print(v1,v2,v3)
#判断是否是合法的变量名
v4 = "5555s".isidentifier()
print(v3)
#判断字符串(字母部分是否都是小写)
v5 = "sds2@a收到"
print(v5.islower())

运行结果

技术分享图片

 

Python字符串的使用(中)

标签:img   使用   字母   ide   image   结果   inf   info   style   

原文地址:https://www.cnblogs.com/Dzc163/p/8476702.html

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