Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- matrix10 = [
- [39, 41, 41, 21, 40, 26, 32, 31, 35, 43],
- [31, 37, 36, 39, 47, 27, 50, 49, 28, 45],
- [31, 37, 41, 40, 34, 37, 42, 22, 36, 34],
- [36, 45, 31, 41, 26, 37, 41, 33, 37, 31],
- [38, 27, 29, 39, 35, 42, 45, 32, 46, 31],
- [21, 26, 37, 47, 32, 38, 45, 32, 36, 24],
- [37, 37, 30, 33, 29, 42, 29, 34, 35, 38],
- [26, 51, 27, 29, 37, 26, 45, 33, 20, 34],
- [44, 45, 28, 33, 37, 31, 41, 43, 41, 33],
- [39, 41, 42, 30, 30, 46, 35, 30, 45, 39],
- [37, 40, 39, 41, 39, 41, 31, 35, 42, 39],
- [33, 37, 42, 40, 36, 29, 42, 32, 32, 29],
- [35, 30, 52, 49, 39, 40, 36, 30, 34, 41],
- [34, 47, 33, 45, 34, 44, 22, 29, 36, 33],
- [32, 30, 17, 38, 34, 32, 35, 38, 31, 35],
- [22, 39, 29, 28, 34, 36, 35, 36, 38, 44],
- [37, 35, 41, 35, 30, 31, 28, 46, 30, 37],
- [48, 40, 44, 41, 40, 33, 36, 32, 38, 22],
- [32, 43, 34, 45, 34, 46, 38, 38, 28, 39],
- [58, 26, 29, 41, 38, 38, 32, 39, 28, 35],
- ]
- #for a in t10:
- # print(a)
- matrix40 = [
- [80, 62, 66, 63, 78, 68, 75, 74, 99, 73],
- [68, 81, 71, 64, 70, 81, 72, 63, 74, 78],
- [65, 68, 77, 77, 77, 47, 84, 70, 77, 60],
- [74, 63, 71, 63, 73, 77, 56, 63, 78, 59],
- [81, 61, 68, 84, 74, 80, 82, 76, 65, 84],
- [77, 80, 80, 66, 81, 70, 82, 65, 74, 61],
- [69, 101, 79, 66, 80, 81, 81, 78, 51, 69],
- [62, 55, 66, 73, 66, 61, 57, 70, 71, 82],
- [72, 76, 61, 74, 67, 88, 85, 73, 68, 60],
- [75, 79, 80, 76, 67, 84, 70, 76, 71, 63]
- ]
- #for a in t40:
- # print(a)
- from collections import Counter
- t10 = []
- for a in matrix10:
- for el in a:
- t10.append(el)
- t40 = []
- for a in matrix40:
- for el in a:
- t40.append(el)
- #print(t10)
- #print(t40)
- table10 = sorted(Counter(t10).items(), key = lambda x: x[0])
- table40 = sorted(Counter(t40).items(), key = lambda x: x[0])
- #print(table10)
- #print(table40)
- print("TABLE 10")
- for p in table10:
- print(p[0], p[1], p[1] / len(t10))
- print()
- print("TABLE 40")
- for p in table40:
- print(p[0], p[1], p[1] / len(t40))
- print()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement