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

python 字符串大小写转换(不能使用swapcase()方法)

时间:2018-06-21 22:24:18      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:coding   author   wan   要求   输入   utf-8   str   大写   apc   

python 3字符串大小写转换

要求不能使用swapcase()方法

#!/usr/bin/env python
# -*- coding:utf-8 -*-
# Author:Hiuhung Wan

str1 = input("请输入字符串:")

list1 = list(str1)
str2 = ‘‘

for i in list1:
    if int(ord(i)) >= 65 and int(ord(i)) <= 90:   #大写
        str2 += chr(int(ord(i))+32)           #字符串拼接
    elif int(ord(i)) >= 97 and int(ord(i)) <= 122:  #小写
        str2 += chr(int(ord(i)) - 32)

print(str2)

  

python 字符串大小写转换(不能使用swapcase()方法)

标签:coding   author   wan   要求   输入   utf-8   str   大写   apc   

原文地址:https://www.cnblogs.com/hiuhungwan/p/9210881.html

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