运行下面程序,输出的结果是( )。
dic = {'A': "dog", 'B': "tiger", 'C': "bear", 'D': "cat"} del dic['B'] print(len(dic))
1
2
3
4