build the counter:
class Counters:
def __init__(self,cats)
self.form = collections.defaultdict(collections.Counter)
I get the length of the first dimension:
len(counters.form.items())
How to get the length of the second dimension?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’d want 2-d array in python, you should implement it that way:
Then the array length would be x*y.
Or even better, use classes: