Skip to content

Instantly share code, notes, and snippets.

@adxrgh
Created April 16, 2019 00:14
Show Gist options
  • Save adxrgh/1e2623839998466c4d19f0eff3dc173a to your computer and use it in GitHub Desktop.
Save adxrgh/1e2623839998466c4d19f0eff3dc173a to your computer and use it in GitHub Desktop.
[函数]定义格式值得关注
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