7 lines
157 B
Python
7 lines
157 B
Python
|
#!/usr/bin/env python3
|
||
|
# @author 轩辕龙儿
|
||
|
# @date 2022/10/25
|
||
|
# @file NP5.py
|
||
|
name = input()
|
||
|
print("I am %s and I am studying Python in Nowcoder!" % name)
|