What is the output of the following snippet of code?
```
def some_fun(x):
if x < 3:
return 0
return 1 + some_fun(x // 3)
print(some_fun(59049))
```
Press Enter to check.
Q33
30 Apr 2023
Programming in Python · Week 5
Q33.What is the output of the following snippet of code?
```
def some_fun(x):
if x < 3:
return 0
return 1 + some_fun(x // 3)
print(some_fun(59049))
```