in Technology by

What is the output of L[1:] if L = [1,2,3]?

1 Answer

0 votes
by
2, 3, Slicing fetches sections.

Related questions

0 votes
    What is the output of L[2] if L = [1,2,3]?...
asked Nov 26, 2020 in Technology by JackTerrance
0 votes
    Write the output of the following code: str2=list( ***@123* ) for l in range(len(str2)-1): if l==5: str2[i ... str2[i]='D' print(str2) Select the correct answer from above options...
asked Dec 23, 2021 in Education by JackTerrance
0 votes
    What is the output of print tuple[1:3] if tuple = ( 'abcd', 786 , 2.23, 'john', 70.2 )?...
asked Nov 24, 2020 in Technology by JackTerrance
0 votes
    What is the output of print list[1:3] if list = [ 'abcd', 786 , 2.23, 'john', 70.2 ]?...
asked Nov 23, 2020 in Technology by JackTerrance
0 votes
    What will be the output of the following Python code snippet? for i in [1, 2, 3, 4][::-1]: print (i) a) 4 3 2 1 b) error c) 1 2 3 4 d) none of the mentioned...
asked Jan 2, 2023 in Technology by JackTerrance
0 votes
    What is the output of for x in [1, 2, 3]: print x?...
asked Nov 26, 2020 in Technology by JackTerrance
0 votes
    What is the output of 3 in [1, 2, 3]?...
asked Nov 26, 2020 in Technology by JackTerrance
0 votes
    What is the output of [1, 2, 3] + [4, 5, 6]?...
asked Nov 26, 2020 in Technology by JackTerrance
0 votes
    What is the output of len([1, 2, 3])?...
asked Nov 26, 2020 in Technology by JackTerrance
0 votes
    Two vectors M and N are defined as M...
asked Feb 12, 2022 in Education by JackTerrance
0 votes
    The molar conductivity of 0.25molL-1 methanoic acid is 46.1Scm2mol-1. Calculate the degree of dissociation constant. ... =54.6Scm2mol-1 Select the correct answer from above options...
asked Jan 5, 2022 in Education by JackTerrance
0 votes
    For the reaction : 2A+B→A2B the rate =k[A][B]2 with k=2.0 10-6mol-2L2s-1 . Calculate the initial rate of ... is reduced to 0.06molL-1 . Select the correct answer from above options...
asked Jan 4, 2022 in Education by JackTerrance
0 votes
    Under isothermal condition, a gas at 300 K expands from 0.1 L to 0.25 L against a constant external pressure of 2 ... C. 5kJ D. 25J Select the correct answer from above options...
asked Jan 2, 2022 in Education by JackTerrance
0 votes
    Let a(l), b(l) represent in input-output pairs, where l varies in natural range of no.s, then if ... heteroassociation (d) none of the mentioned Please answer the above question....
asked Sep 3, 2022 in Education by JackTerrance
0 votes
    If a(l) gives output b(l) & a'=a(l)+m,where m is small quantity & if a' gives ouput b(l) ... interpolative behaviour (d) none of the mentioned Please answer the above question....
asked Sep 3, 2022 in Education by JackTerrance
...