So I have something like that:
scope = ['https://spreadsheets.google.com/feeds', 'https://www.googleapis.com/auth/drive']
creds = ServiceAccountCredentials.from_json_keyfile_name(file_path, scope)
client = gspread.authorize(creds)
sheet = client.open('Test').sheet1
username = input('Username: ')
test = sheet.col_values(1)
if username in test:
print(username.row) # This won't work
Explanation: I want it to "scan" the Sheet for the username, if it exists it should tell me in which row it is. Example: print(username.row) = 5 (5 = 5. Row)