This is the P2PU Archive. If you want the current site, go to www.p2pu.org!
You haven't posted any discussions yet.
There are 2 types of comments in Python:
	# the pound sign, which is a one-lign comment
	and the multi-line comment which is embedded in 3 quotation marks:
	""" This is a multi line comment
	which is is also used for doc strings in functions
	"""
	 
thanks!