NP12. 格式化输出(二)
描述
输入描述
一行一个字符串表示名字。输出描述
请分别按全小写、全大写和首字母大写的方式对name进行格式化输出(注:每种格式独占一行)。示例1
输入:
niuNiu
输出:
niuniu NIUNIU Niuniu
Python 解法, 执行用时: 10ms, 内存消耗: 2844KB, 提交时间: 2022-06-21
str = raw_input() print str.lower() print str.upper() print str.title()
Python 解法, 执行用时: 10ms, 内存消耗: 2944KB, 提交时间: 2022-07-25
str1=raw_input() print(str1.lower()) print(str1.upper()) print(str1.title())
Python 解法, 执行用时: 11ms, 内存消耗: 2856KB, 提交时间: 2022-07-21
name = raw_input() print name.lower() print name.upper() print name.title()
Python 解法, 执行用时: 11ms, 内存消耗: 2860KB, 提交时间: 2022-06-04
str1 = raw_input() print str1.lower() + '\n' + str1.upper() + '\n' + str1.title()
Python 解法, 执行用时: 11ms, 内存消耗: 2876KB, 提交时间: 2022-06-20
f=raw_input() print(f.lower() + "\n" + f.upper() + "\n" + f.title())