in 연산자
len
math.floor
Returns the length (number of items) of an object.
len(dict)
Enter values below to update the example in real time.
print
print(len("hello")) # 5 print(len([1, 2, 3])) # 3 print(len({"a": 1, "b": 2})) # 2