Answer the question
In order to leave comments, you need to log in
Is the sqlite3 cell in Python an anomaly or am I messing up?
Works:
for value in sql.execute("SELECT nameboss FROM tboss WHERE death = '3:55'"):
print(str(value[0]))
print(timein)
timein = "3:55"
for value in sql.execute(f"SELECT nameboss FROM tboss WHERE death = '{timein}'"):
print(str(value[0]))
print(timein)
timein = str(current_datetime.hour)+":"+str(current_datetime.minute)
for value in sql.execute(f"SELECT nameboss FROM tboss WHERE death = '{timein}'"):
print(str(value[0]))
print(timein)
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question