I am doing a small program in Python
and it throws this error in the second line of code
OSError: [Errno 22] Invalid argument: './C:\Python\\x07file.txt'
def funcion():
ruta = open('./%s' % 'C:\Python\\archivo.txt', 'r')
archivo_leido = ruta.read()
print (archivo_leido)
ruta.close()
funcion()