I can pull data from google spreadsheet by using
from google.colab import auth
auth.authenticate_user()
import gspread
from oauth2client.client import GoogleCredentials
gc = gspread.authorize(GoogleCredentials.get_application_default())
worksheet = gc.open('RoutePlannerCumOptimizerInputSheet').sheet1
it does not take sheet name as parameter, my spreadsheet has three sheets, i can only access only one sheet. how to access other sheets and pull data in the same google spreadsheet. Any help is deeply appreciated.