Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
titleStrings in Java
 String s = "spam";
        char c = s.charAt(1);
Code Block
languagepy
titleStrings in Python
 S = "spam"
 c = S[1] # c = "p"