Baca data dari file Excel menggunakan OpenByXL

for row in ws.values:
   for value in row:
     print(value)
Lively Lynx