Screen Link:
My Code:
row_2 = [‘Instagram’, 0.0, ‘USD’, 2161558, 4.5]
row_3 = [‘Clash OF Clans’, 0.0, ‘USD’, 2130805, 4.5]
Replace this line with your code
print(row_2)
type(row_2)
print(row_3)
type(row_3)
What I expected to happen:
[‘Instagram’, 0.0, ‘USD’, 2161558, 4.5]
[‘Clash OF Clans’, 0.0, ‘USD’, 2130805, 4.5]
list
What actually happened:
Output
[‘Instagram’, 0.0, ‘USD’, 2161558, 4.5] [‘Clash OF Clans’, 0.0, ‘USD’, 2130805, 4.5] list
Variables
row_2
row_3
type
Replace this line with the output/error