题解 | #定制显示器#
定制显示器
https://www.nowcoder.com/practice/b0a788bcb021425f9391067fd2646b07
def display(n, name): print(f"Happy {n}th birthday to {name}!") nam = input() age = int(input()) display(age, nam)
定制显示器
https://www.nowcoder.com/practice/b0a788bcb021425f9391067fd2646b07
def display(n, name): print(f"Happy {n}th birthday to {name}!") nam = input() age = int(input()) display(age, nam)
相关推荐