Informatics Practices
Single-line comments in Python begin with …………… symbol.
- %
- "
- '''
- #
Getting Started
2 Likes
Answer
#
Reason — The # symbol in Python indicates the start of a single-line comment, which extends from the # to the end of the line.
Answered By
2 Likes
Related Questions
The interactive interpreter of Python is termed as …………… .
- Python shell
- Python Script mode
- Python Editor mode
- Python command line
The three greater than signs (>>>) are called the Python …………… .
- Cursor
- Command prompt
- Pointer
- Blinking cursor
Which of the following codes is correct?
1.
print("Programming is fun") print("Python") print("Computer Science")2.
print ("Programming is fun) print("Python") print("Computer Science)3.
Print("Programming is fun") print("Python") print("Computer Science")4.
Print("Programming is fun") Print("Python") Print("Computer Science")Python is a case-sensitive language. This means …………… .
- Capital and small letters are same for Python
- Python doesn't care about the case of alphabets
- Python treats capital and small letters as different
- Python automatically capitalizes the small letters