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 990137a commit c94d4d4Copy full SHA for c94d4d4
input_function.py
@@ -1 +1,7 @@
1
-print("Second project code")
+input()
2
+name=input("what is your name?")
3
+print("Hello",name)
4
+input(123)#by default number as a string
5
+x=int(input("Enter a value:"))
6
+print("x =",x)
7
+print("Hello"+" "+input("What is your name?"))
0 commit comments