0
Hy. I m beginer at python.I have try this code. But on the last line i try print ('') empty and it is showing nothing. Reply?
print('Hello World') print("work hard") print(" you will succed") print("")
5 Answers
+ 1
What do you want it to show? The text between the quotes is what gets shown. The last line has nothing between the quotes so it won't show anything.
0
what is string?
0
yeah i think variable is something that can b changed or replaced!! is this true?
0
Variables are like a box that can hold things.
userName = ("Shah") <<<string
userAge = 17 <<<<int
bool = True or False
0
thanks mate..i get your point?