Report Bug
Qus : Which of the following is true about Python strings?
Qusपायथन स्ट्रिंग्स के बारे में निम्नलिखित में से कौन सा सत्य है?

A. Strings can be modified using indexing.
B. Strings are immutable.
C. Strings can only contain alphabetic characters.
D. Strings must end with a newline character.


Solution
B. Strings are immutable.






Report Bug