python 字符串大小写转换(不能使用swapcase()方法)
python 3字符串大小写转换
要求不能使用swapcase()方法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/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) |
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步