Hello.
I’m new to GitHub classroom and just setup my first assignment (Python 3). I used input/output autograding cases for simplicity but, since I teach in Spanish, I use a lot of characters with diacritical marks [áéíóúüñ] that seems to be causing issues when running the autograder.
I get the following:
The \xfa
character the autograder is complaining about is the acute-accented letter u (ú
), from the word número
.
I already have a:
# -*- coding: utf-8 -*-
directive in my code.
Any ideas? Which coding should I use for the Linux server the autograder runs on? UTF-8 works just fine in Spyder on Windows as well as in Repl.it.