8 odpowiedzi
+ 2
this is no running on my laptop help # shudarshan rai
+ 6
✓✓Using search features can increase chance of getting best answer
✓https://www.sololearn.com/discuss/938664/?ref=app
+ 5
you better understand yourselves. However you should use search button in learn section, if not found in that then search Q&A. https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2288/?ref=app
+ 2
thanks sudarshan rai
+ 1
Mini
"#" is single line comment
x=2+2
#output 4
print(x)
0
# This is comment it starts with a #
0
Python is an interpreted high-level programming language for general-purpose programming. Created by Guido van Rossum and first released in 1991.
Simple
Python is a simple and minimalistic language. Reading a good Python program feels almost like reading English, although very strict English! This pseudo-code nature of Python is one of its greatest strengths. It allows you to concentrate on the solution to the problem rather than the language itself.
Easy to Learn
As you will see, Python is extremely easy to get started with. Python has an extraordinarily simple syntax, as already mentioned.
Free and Open Source
Python is an example of a FLOSS (Free/Libré and Open Source Software). In simple terms, you can freely distribute copies of this software, read its source code, make changes to it, and use pieces of it in new free programs. FLOSS is based on the concept of a community which shares knowledge. This is one of the reasons why Python is so good - it has been created and is constantly improved by a community who just want to see a better Python.
0
comment is an explanation that ignored by python interpreter .
in fact it's just explanations that you write for yourself or other programmers to know where your write any function or value .
It's helpful for debugging and understanding your program .
in python you can write a comment whit "#" .
like that :
# this sentence is a comment.
the comments have not any effect in your program .