标签:变量 字符 strip() str pytho int 数据类型 字符串 动态
今天作业:
1.阅读str对象的help文档,并解决如下的问题。
1.1.有如下字符串。
python是动态语言
要求如下[请分别写出脚本]:
(1.)去掉该字符串下前面所有的空格。
(2.)去掉该字符串下后面所有的空格。
(3.)去掉该字符串2边的空格。
1.2有如下字符串
"abc"
(1)请将其全部大写。
(2)请将其全部小写。
2 怎么查看变量的类型是什么?
a=" What is your name "
print("将左边的空格去除")
print(a.lstrip())
print("将右边的空格去除")
print(a.rstrip())
print("将两边的空格都去除")
print(a.strip())
print("将输出全部大写")
print(a.upper())
print("将输出全部小写")
print(a.lower())
print("查看a变量的数据类型:")
print(type(a))
标签:变量 字符 strip() str pytho int 数据类型 字符串 动态
原文地址:http://www.cnblogs.com/chenxiaoyong/p/6130711.html