Python Forum

Full Version: Python Pandas DataFrame Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I am new and a beginner trying to learn. I have 4 rows in Lausanne. I have 4 rows in Morges. I don't understand why the below codes doesnt give me the 8 rows I would expect. Does anyone know?

listingsLausanneMorges = pd.DataFrame(
    {
        'title': [titlesLausanne,titlesMorges],
        'description': [descriptionLausanne,descriptionMorges],
        'address': [addressLausanne,addressMorges],
        'price': [priceLausanne,priceMorges],
        'rating & listing date': [rating_listingDateLausanne, rating_listingDateMorges]
    })
Ok, i found the solution.