码迷,mamicode.com
首页 > 其他好文 > 详细

作业1

时间:2016-12-04 16:27:18      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:变量   字符   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))

作业1

标签:变量   字符   strip()   str   pytho   int   数据类型   字符串   动态   

原文地址:http://www.cnblogs.com/chenxiaoyong/p/6130711.html

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