HERE is the code:
customers = {'CustomerID': [10, 11],
'Name': ['Mike', 'Marcia'],
'Address': ['Address for Mike','Address for Marcia']}
customers = pd.DataFrame(customers)
customers
What I get in my Jupyter notebook is below :
CustomerID Name Address
0 10 Mike Address for Mike
1 11 Marcia Address for Marcia
What I want is that it can print the tables with solid borders.
Thanks