+ 2
I am new to the python language. I did a few tries. If I have mistakes, can you find it?
Ä°lk ĂŒĂ§ deneme https://code.sololearn.com/cHAa6GOsXMa7/?ref=app https://code.sololearn.com/c253e3Wmzmbs/?ref=app https://code.sololearn.com/cZWjUwut0u8p/?ref=app
3 Answers
+ 6
----First Try----
Use print instead of input
input - -> Takes input value from the user
print - - > Outputs the value in console
Example input and print:
x = input()
print(x)
For example I input "Hello", it will be assigned to x variable then print the variable "x" which contains "Hello" value and therefore it will output:
>> Hello
----Second Try----
Same thing with the First Try
----Third Try----
Just remove the input() on the last line.
- - - - - - - - - - -
I see good progress on you. Keep it Up and Keep Learning!! đđ
+ 6
SpaceL , you have just started with the python tutorial, so be patient and continue reading and also practicing. At the beginning of learning something new, it will look confusing by seeing a lot of new stuff. But this will change. you will get more and more familiar with this language, but it will take some time. And there is no easy trick to learn it faster.
Happy coding und much successïŒ
+ 3
Thank you đ