Informatics Practices
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
Getting Started
1 Like
Answer
Python treats capital and small letters as different
Reason — Python is a case-sensitive language. This means that Python differentiates between capital and small alphabets.
Answered By
2 Likes
Related Questions
Single-line comments in Python begin with …………… symbol.
- %
- "
- '''
- #
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")
…………… mode of Python gives instant result of typed statement.
- Interactive mode
- Script mode
- Both Interactive and Script mode
- None of these
Assertion (A): Python is an object-oriented programming language.
Reasoning (R): Using Python, any software can be designed. Everything in Python is an object.
- Both A and R are true and R is the correct explanation of A.
- Both A and R are true but R is not the correct explanation of A.
- A is true but R is false.
- A is false but R is true.