Skip to content

Instantly share code, notes, and snippets.

@Celia-code
Created April 24, 2020 11:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Celia-code/c92df27ff85707dde446de1a01a6683e to your computer and use it in GitHub Desktop.
Save Celia-code/c92df27ff85707dde446de1a01a6683e to your computer and use it in GitHub Desktop.
數值
# 最大值
print(max(
7, 5, 8, 6, 1
))
# 打印出:8
# 最小值
print(min(
7, 5, 8, 6, 1
))
# 打印出:1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment