单项选择题

import pandas as pd
cut1 =pd.cut (pd.Series([2,3,1]),[1,2,3],right=False)
cut1[1]
输出结果为:()

A.(2,3)
B.(1,2)
C.[1,2)
D.NaN