Posts by gh0st • 31 points
4 posts
-
0
votes2
answers76
viewsA: Select all persons who have birthday date higher than 2000
You can do it like this SELECT * FROM usuarios WHERE nascimento >= 2000
-
1
votes2
answers32
viewsA: Decryption error in request
try coding with Base64 dai on the Python server try to decode the string before playing on the wiki, use the Python b64decode import base64 Request = 'cmVzcG9zdGEgZGVjb2RpZmljYWRhIA==' resposta =…
-
1
votes5
answers21141
viewsA: What is the functionality of n?
is a type of break line that is used to "break" the line of code thus print("ola mundo \r\n exemplo") the exit will be like this ola mundo exemplo…
-
1
votes1
answer61
views