The quiz where the difficulty automagically adapts to the player's Python knowledge
This is a question page. You can use this page to bookmark a question. Start a new quiz!
Question #282
print("Python"[2:])
This will return thon . With the list slicing notation, 2 is here the start of the slice of the returned list, it will keep all characters after the second position e.g. after y . (oreilly.com/content/how-do-i-use-the-slice-notation-in-py...)
Question difficulty: 🔵🔵🔵🔵🔵