We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 414ca36 commit d78a382Copy full SHA for d78a382
.vscode/settings.json
@@ -1,4 +1,5 @@
1
{
2
"python.formatting.provider": "autopep8",
3
- "python.pythonPath": "/usr/local/bin/python3"
+ "python.pythonPath": "C:\\Users\\yannm\\AppData\\Local\\Programs\\Python\\Python37-32\\python.exe",
4
+ "python.jediEnabled": false
5
}
Mutable/code.py
@@ -1,5 +1,7 @@
-print 'Address of a is: {}'.format(id(a))
+a = 5
+
+print('Address of a is: {}'.format(id(a)))
6
# a[0] = ''
7
# print a
0 commit comments