Posts by Luis Felipe Amorim • 59 points
3 posts
-
-1
votes1
answer558
viewsQ: Vscode ASCII Standard Sequences (ANSI)
I’m intending to migrate from pycharm to VS Code. It’s just that there’s something going wrong. Something that was enough as I use in pycharm to make the text more friendly, misses the use of…
-
3
votes1
answer49
viewsQ: Simplficando chained comparisons
According to pycharm (which is with the default settings for pep8) says it is possible to simplify this line. elif student['averange'] >= 5 and student['averange'] < 7: student['situation'] =…
-
2
votes1
answer146
viewsQ: ANSI in Visual Studio Code with Python
How do I make vs code understand this command line: print('\033[1mNome: ') Where " 033[1m" is the part responsible for leaving in bold, but instead it is responding with this: ?[1mNome:…