Report Bug
Qus :

What will be the output of the following Python code snippet?

print('abcdefcdghcd'.split('cd'))

Qus

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

print('abcdefcdghcd'.split('cd'))


A. [‘ab’, ‘ef’, ‘gh’]
B. [‘ab’, ‘ef’, ‘gh’, ”]
C. (‘ab’, ‘ef’, ‘gh’)
D. (‘ab’, ‘ef’, ‘gh’, ”)


Solution
B. [‘ab’, ‘ef’, ‘gh’, ”]



Explanation
The given string is split and a list of substrings is returned.



Report Bug