Report Bug
Qus :

What will be the output of the following Python code?

print('xyxxyyzxxy'.lstrip('xyy'))

Qus

निम्नलिखित Python कोड का आउटपुट क्या होगा?

print('xyxxyyzxxy'.lstrip('xyy'))


A. zxxy
B. xyxxyyzxxy
C. xyxzxxy
D. none of the mentioned


Solution
A. zxxy



Explanation
All combinations of the characters passed as an argument are removed from the left hand side.



Report Bug