Single line comments in Python begin with ............... symbol.
#
Reason — Single line comments in Python begin with # symbol.
For example,
x = 10 y = x + 100 #value of x + 100 is assigned to variable y print(y)