Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
[Python] Який правильний синтаксис повертає перший символ у рядку?
x = sub("Hello", 0, 1)
x = "Hello".copy(0, 1)
x = "Hello".sub(0, 1)
x = "Hello"[1]
x = "Hello"[0]
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!