Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 196 Bytes

what_is_the_result_lvl_2.md

File metadata and controls

13 lines (9 loc) · 196 Bytes

What is the result? - Level 2

What is the result of each of the following statements?

  1. "123456"[0]
  2. "123456"[-1]
  3. print("\\a\\b\a\c")

Solution

  1. '1'
  2. '6'
  3. \a\b\c