We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16e4874 commit 2f4a57aCopy full SHA for 2f4a57a
1 file changed
var_in_python.py
@@ -0,0 +1,10 @@
1
+name=input("What is your name?")
2
+print(name)
3
+name="Jenny"
4
+print(name)#as the name suggest Variable values can vary
5
+a=1 #Dynamically typed
6
+b="Payal"
7
+print(a)
8
+print(b)
9
+length=len(name)
10
+print(length)
0 commit comments