Python has three ways to comment. The first way is only for a single line. You use the (#) for that. The 2nd and third ways allow for comments on more than one line without having to make a combo of one or more hashtags.
Let's say I want comment on a single line.
Next, let's try the 2nd way.
Finally, here is the last way:
O.K. what comment form do you like and why?
Let's say I want comment on a single line.
Code:
# This place is Admin Junkies.
Next, let's try the 2nd way.
Code:
""" This is a Admin Junkies.
It has a coding section.
Why not try it out?
Are you up to it? """
Finally, here is the last way:
Code:
# This is Admin Junkies. \
It has more than one theme \
Which ones do you like? \
Why is that the case?
O.K. what comment form do you like and why?