Posts by Murilo Cadolo • 7 points
2 posts
-
-1
votes1
answer58
viewsA: Syntaxerror without apparent errors
I solved the problem by reinstalling Python, I don’t know exactly what happened, but I believe that at the time of installation I must have selected some string option or something like that. But if…
-
0
votes1
answer58
viewsQ: Syntaxerror without apparent errors
import sys entrada = input("DLL Nome: ") saida = entrada+"_output.txt" file = bytearray(open(entrada, 'rb').read()) with open(saida, 'w') as output: for count, byte in enumerate(file, 1):…