10 lines
209 B
Python
10 lines
209 B
Python
# mypanda.py with default and custom random functions
|
|
import pandas
|
|
|
|
def print_dataframe(dict):
|
|
"""This function output a dictionary as a data frame """
|
|
|
|
brics = pandas.tDataFrame(dict)
|
|
print(brics)
|
|
|