The first five steps in the accounting cycle include analyzing transactions, journalizing, posting, preparing an unadjusted trial balance, and recording adjusting entries.
【简答题】counter=1
num=0
def tset():
global counter
for i in (1,2,3):
counter+=1
num=10
tset()
print(counter,num) 上述代码的输出结果是____。A. 4 0 B. 1 10 C. 4 10 D. 1 0