Created
April 16, 2019 00:14
-
-
Save adxrgh/1e2623839998466c4d19f0eff3dc173a to your computer and use it in GitHub Desktop.
[函数]定义格式值得关注
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def format(x): | |
if x ==1: | |
template = '{} song' | |
else: | |
template = '{} songs' | |
return template.format(x) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment