xlwings code:
#Referencing Multiple Cells
import xlwings as xw #Import the xlwings package
app=xw.App()
bk=app.books.active #Get the active workbook
sht=bk.sheets.active #Get the active worksheet
#xlwings
sht.range('B2, C5, D7').select()
#sht['B2, C5, D7'].select()
#xlwings API
#sht.api.Range('B2, C5, D7').Select()
bk.close()
app.kill()
