Skip to content

Instantly share code, notes, and snippets.

@Celia-code
Created April 24, 2020 11:16
Embed
What would you like to do?
數值
# 最大值
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