Spaces:
Running
Running
File size: 253 Bytes
9a6a4dc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import json
# Load the JSON file
with open('data.json', 'r') as file:
data = json.load(file)
# Access the 'users' key
users = data.get('users', [])
# Count the number of users
num_users = len(users)
# Print the number of users
result = num_users |