I'm working on a project that creates some graphics using matplotlib in pydroid but I need to see some output in the terminal but when I import matplotlib and run the code it shows the matplotlib GUI window and not the pydroid terminal how can I solve that?
import matplotlib.pyplot as plt
import pandas as pd
df = pd.read_csv("/file.csv")
print(df)