判断下列代码段的大O级别:
def function(n):    return 2
A、O(n)
B、O(n^2)
C、O(n^3)
D、O(1)