<dd id="sga4y"><optgroup id="sga4y"></optgroup></dd>
<nav id="sga4y"><code id="sga4y"></code></nav>
  • <optgroup id="sga4y"></optgroup>
    ???? Python ???
    ??9?? ?????
    ???? ???? ????

    ????

    ?§Ò??????????????????§µ??????????????????????????????????§Ö???????????????????????????????????????????????????????????????????????????????????????????????????§Ö???????????????????§³?

    ???????

    ??9.5 ???????

    #!/usr/bin/python
    # Filename: seq.py


    shoplist = ['apple', 'mango', 'carrot', 'banana']

    # Indexing or 'Subscription' operation
    print 'Item 0 is', shoplist[0]
    print 'Item 1 is', shoplist[1]
    print 'Item 2 is', shoplist[2]
    print 'Item 3 is', shoplist[3]
    print 'Item -1 is', shoplist[-1]
    print 'Item -2 is', shoplist[-2]

    # Slicing on a list
    print 'Item 1 to 3 is', shoplist[1:3]
    print 'Item 2 to end is', shoplist[2:]
    print 'Item 1 to -1 is', shoplist[1:-1]
    print 'Item start to end is', shoplist[:]

    # Slicing on a string
    name = 'swaroop'
    print 'characters 1 to 3 is', name[1:3]
    print 'characters 2 to end is', name[2:]
    print 'characters 1 to -1 is', name[1:-1]
    print 'characters start to end is', name[:]

    ????????code/seq.py??

    ???

    $ python seq.py
    Item 0 is apple
    Item 1 is mango
    Item 2 is carrot
    Item 3 is banana
    Item -1 is banana
    Item -2 is carrot
    Item 1 to 3 is ['mango', 'carrot']
    Item 2 to end is ['carrot', 'banana']
    Item 1 to -1 is ['mango', 'carrot']
    Item start to end is ['apple', 'mango', 'carrot', 'banana']
    characters 1 to 3 is wa
    characters 2 to end is aroop
    characters 1 to -1 is waroo
    characters start to end is swaroop

    ????¦É???

    ?????????????????????????????????§Ö?????????????????????¡À????????????¡Â??????§Ö?????????????????§Ö????Python????????????§Ø??¦Ë?????????????Python??0?????????????shoplist[0]????????????shoplist[3]??shoplist?????§Ö?????????

    ??????????????????????????????¡ê?¦Ë?????????¦Â?????????????shoplist[-1]??????§Ö???????????shoplist[-2]?????§Ö??????????????

    ????????????????????????????????????????????????????????e???þŸ?????????????????????????????????????????????e?????????

    ??????????§Ö?????????e?????????????????¦Ë????????????e???????????????????????????????????????Python?????????????????????????????????Python??????????¦Â?????????????§Õ???¦Ë?? ??? ??????? ???? ¦Ë???????????????¦Ë?????????????????§Ö????????¦Ë?????????????

    ??????shoplist[1:3]?????¦Ë??1?????????¦Ë??2??????????¦Ë??3???????????????????????????????????????????????shoplist[:]???????????§Ö??????

    ??????????????????????????????¦Â????????¦Ë?¨¢????íàshoplist[:-1]???????????????????????????????????????

    ???Python??????????????????????????????????????????????????????????§Ö?????????????????????????????????î”?§Ò?????????


    ???? ????? ????
    ??? ??? ?¦Ï?
    ?????
    @ssv 97av