Oct-06-2022, 08:46 PM
Wow! Thanks thats impressive.
It certainly made things a bit more complicated due to how python pulls the days from SQL and that's what threw me at the start.
Now that I found the user I now want to delete it. Any tips on that?
I could use this
It certainly made things a bit more complicated due to how python pulls the days from SQL and that's what threw me at the start.
Now that I found the user I now want to delete it. Any tips on that?
I could use this
for item in users: for user in item: if user == 'support': print(f"user {user} found.")And then some sort of delete command but is there a way to write it so that the name is found so do x but if not found do y?