9 lines
144 B
Python
9 lines
144 B
Python
|
#!/usr/bin/env python3
|
||
|
# @author 轩辕龙儿
|
||
|
# @date 2022/10/25
|
||
|
# @file NP12.py
|
||
|
s = input()
|
||
|
print(s.lower())
|
||
|
print(s.upper())
|
||
|
print(s.title())
|