Chinaunix首页 | 论坛 | 博客
  • 博客访问: 439379
  • 博文数量: 184
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 594
  • 用 户 组: 普通用户
  • 注册时间: 2013-12-17 16:24
个人简介

我是一只小小鸟

文章分类

全部博文(184)

文章存档

2016年(1)

2015年(55)

2014年(127)

2013年(1)

分类: Python/Ruby

2014-04-25 11:48:47


点击(此处)折叠或打开

  1. #!/usr/bin/python

  2. string="Please covert this strings in some way."

  3. invert_seq=string[::-1]
  4. upper_str1_invert=invert_seq.upper()
  5. upper_str2_sort=string.upper()

  6. print string
  7. print invert_seq
  8. print upper_str1_invert
  9. print upper_str2_sort
输出结果:

点击(此处)折叠或打开

  1. Please covert this strings in some way.
  2. .yaw emos ni sgnirts siht trevoc esaelP
  3. .YAW EMOS NI SGNIRTS SIHT TREVOC ESAELP
  4. PLEASE COVERT THIS STRINGS IN SOME WAY.
a=string[::-1]:将字符串变量string中的所有字符逆序后赋值给a;
b=string.upper():使用方法upper将string的所有字符转换为大写,赋给b;
string.lower():使用方法lower将string的所有字符转换为小写。

小知识:
清屏需要引入os模块
os.system('clear')

阅读(629) | 评论(0) | 转发(0) |
0

上一篇:shell if/while/case

下一篇:cd

给主人留下些什么吧!~~