+ 2

python

anyone please tell me about comments in python

20th Sep 2018, 2:38 PM
Sphoorti Pipley
Sphoorti Pipley - avatar
8 Answers
+ 2
this is no running on my laptop help # shudarshan rai
20th Sep 2018, 3:01 PM
Sphoorti Pipley
Sphoorti Pipley - avatar
+ 6
✓✓Using search features can increase chance of getting best answer ✓https://www.sololearn.com/discuss/938664/?ref=app
20th Sep 2018, 2:46 PM
Sudarshan Rai
Sudarshan Rai - avatar
+ 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
20th Sep 2018, 7:53 PM
Roneel
Roneel - avatar
+ 2
thanks sudarshan rai
22nd Sep 2018, 1:40 PM
Sphoorti Pipley
Sphoorti Pipley - avatar
+ 1
Mini "#" is single line comment x=2+2 #output 4 print(x)
20th Sep 2018, 7:27 PM
Sudarshan Rai
Sudarshan Rai - avatar
0
# This is comment it starts with a #
20th Sep 2018, 4:39 PM
Paul
Paul - avatar
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.
21st Sep 2018, 11:13 AM
meenal deshpande
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 .
24th Sep 2018, 2:43 PM
Mehran sanea
Mehran sanea - avatar