列表

详情


NP12. 格式化输出(二)

描述

牛牛、牛妹和牛可乐都是Nowcoder的用户,某天Nowcoder的管理员希望将他们的用户名以某种格式进行显示,
现在给定他们三个当中的某一个名字name,请分别按全小写、全大写和首字母大写的方式对name进行格式化输出(注:每种格式独占一行)。

输入描述

一行一个字符串表示名字。

输出描述

请分别按全小写、全大写和首字母大写的方式对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())

上一题