We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef84870 commit 36315f7Copy full SHA for 36315f7
Article002 - Variables and Types/demo04_caseSensitive.py
@@ -0,0 +1,7 @@
1
+# Case-sensitive
2
+a = 42
3
+A = "Python"
4
+#A will not overwrite a
5
+
6
+print(a)
7
+print(A)
0 commit comments