Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们如何在 python 中为 firebase 数据库做 count() ?
例如..
count = db.child("users").get().count()
您可以将此len功能用作:
len
len(db.child('users').get().val())