6 lines
134 B
Python
6 lines
134 B
Python
import matplotlib.pyplot as plt
|
|
import json
|
|
with open ("movies.json","r",encoding='utf-8') as f:
|
|
print(f)
|
|
genre_count=()
|
|
plt.bar |