Search snippets
Browse Code Answers
FAQ
Usage docs
Log In
Sign Up
Home
Python
Sample Input: ['a', 'b', ['c', ['d', 'e', ['f', 'g', 'h', 'i', 'j'], 'k'], 'l'], 'm', 'n'] Sample Output: [['c', ['d', 'e', ['f', 'g', 'h', 'i', 'j'], 'k'], 'l']]
Tom
Programming language:
Python
2021-06-19 13:59:17
0
Q:
Sample Input: ['a', 'b', ['c', ['d', 'e', ['f', 'g', 'h', 'i', 'j'], 'k'], 'l'], 'm', 'n'] Sample Output: [['c', ['d', 'e', ['f', 'g', 'h', 'i', 'j'], 'k'], 'l']]
Wei
Code:
Python
2021-06-19 19:19:30
print[
'a'
,
'b'
, [
'c'
, [
'd'
,
'e'
, [
'f'
,
'g'
,
'h'
,
'i'
,
'j'
],
'k'
],
'l'
],
'm'
,
'n'
]
1
Tags
input
Related
prog = {'Python':'C++', 'Java':['JavaScript', 'JSON', 'C++']'Python Console':('Lucy', 'Dad')} SyntaxError: invalid syntax
New to Communities?
Join the community