0

How to add comment in python?

I recently learned it, but I am back after a long break. Please help me. I am taking notes on "or" and "and" in Python, but getting confused. Would you don't mind if I ask this?

4th Nov 2025, 11:52 AM
ChirantanChitte011
2 Respuestas
+ 2
With a #
4th Nov 2025, 3:49 PM
Roman Koerdt
Roman Koerdt - avatar
+ 1
HTML uses a unique bracketed syntax. <!-- ... --> CSS only uses the multi-line style, /* ... */. Most languages like JavaScript and the C-style backend languages use both // single comment and /* ... */ for multiple comments Python and Ruby primarily use the pound sign (#) for single comments. Ruby is unique with its explicit =begin ... =end block for multi-line comments.
4th Nov 2025, 8:16 PM
BroFar
BroFar - avatar