How to write a snippet for 'main' function in vs code? It's not allowing to put double "" in between the body. Here is what I have written:
"Print to console": {
"prefix": "mai",
"body": [
"if __name__ == __main__:"
],
"description": "This throws main"
And I want this:
if __name__ == '__main__':
pass
How to make this snippet?