Advertisement
Korotkodul

Лаба

Apr 1st, 2025 (edited)
564
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.88 KB | None | 0 0
  1. matrix10 = [
  2. [39, 41, 41, 21, 40, 26, 32, 31, 35, 43],
  3. [31, 37, 36, 39, 47, 27, 50, 49, 28, 45],
  4. [31, 37, 41, 40, 34, 37, 42, 22, 36, 34],
  5. [36, 45, 31, 41, 26, 37, 41, 33, 37, 31],
  6. [38, 27, 29, 39, 35, 42, 45, 32, 46, 31],
  7. [21, 26, 37, 47, 32, 38, 45, 32, 36, 24],
  8. [37, 37, 30, 33, 29, 42, 29, 34, 35, 38],
  9. [26, 51, 27, 29, 37, 26, 45, 33, 20, 34],
  10. [44, 45, 28, 33, 37, 31, 41, 43, 41, 33],
  11. [39, 41, 42, 30, 30, 46, 35, 30, 45, 39],
  12. [37, 40, 39, 41, 39, 41, 31, 35, 42, 39],
  13. [33, 37, 42, 40, 36, 29, 42, 32, 32, 29],
  14. [35, 30, 52, 49, 39, 40, 36, 30, 34, 41],
  15. [34, 47, 33, 45, 34, 44, 22, 29, 36, 33],
  16. [32, 30, 17, 38, 34, 32, 35, 38, 31, 35],
  17. [22, 39, 29, 28, 34, 36, 35, 36, 38, 44],
  18. [37, 35, 41, 35, 30, 31, 28, 46, 30, 37],
  19. [48, 40, 44, 41, 40, 33, 36, 32, 38, 22],
  20. [32, 43, 34, 45, 34, 46, 38, 38, 28, 39],
  21. [58, 26, 29, 41, 38, 38, 32, 39, 28, 35],
  22.     ]
  23. #for a in t10:
  24. #    print(a)
  25.  
  26. matrix40 = [
  27. [80, 62, 66, 63, 78, 68, 75, 74, 99, 73],
  28. [68, 81, 71, 64, 70, 81, 72, 63, 74, 78],
  29. [65, 68, 77, 77, 77, 47, 84, 70, 77, 60],
  30. [74, 63, 71, 63, 73, 77, 56, 63, 78, 59],
  31. [81, 61, 68, 84, 74, 80, 82, 76, 65, 84],
  32. [77, 80, 80, 66, 81, 70, 82, 65, 74, 61],
  33. [69, 101, 79, 66, 80, 81, 81, 78, 51, 69],
  34. [62, 55, 66, 73, 66, 61, 57, 70, 71, 82],
  35. [72, 76, 61, 74, 67, 88, 85, 73, 68, 60],
  36. [75, 79, 80, 76, 67, 84, 70, 76, 71, 63]
  37.     ]
  38. #for a in t40:
  39. #  print(a)
  40.  
  41. from collections import Counter
  42.  
  43. t10 = []
  44. for a in matrix10:
  45.   for el in a:
  46.     t10.append(el)
  47.  
  48. t40 = []
  49. for a in matrix40:
  50.   for el in a:
  51.     t40.append(el)
  52. #print(t10)
  53. #print(t40)
  54.  
  55. table10 = sorted(Counter(t10).items(), key = lambda x: x[0])
  56. table40 = sorted(Counter(t40).items(), key = lambda x: x[0])
  57.  
  58. #print(table10)
  59. #print(table40)
  60. print("TABLE 10")
  61. for p in table10:
  62.   print(p[0], p[1], p[1] / len(t10))
  63. print()
  64.  
  65. print("TABLE 40")
  66. for p in table40:
  67.   print(p[0], p[1], p[1] / len(t40))
  68. print()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement