02-Tuple of basic python learning

Source: Internet
Author: User

#Encoding=utf-8#tuples, like lists, are also a sequencePrint(A)PrintThePrint(1,)Print1, a=1Print(Type (a)) a=1,2,3Print(Type (a))#The tuple function (tuple) takes a sequence as an argument and turns it into a tuple, and returns if it is a tuplea=[1,2,3,4,4]b=tuple (a)Print(a)Print(Type (a))Print(b)Print(type (b)) C=tuple ('ABC')#converting a list to a tuplePrint(c)#(' A ', ' B ' ' C ')#tuples are not really complicated-there are not too many other operations in addition to creating tuples and accessing tuples, you can refer to other types#sequence to implement thea=1,2,3Print(A[1])#2Print(A[1:2])#(2,)Print(a[:])#(a)Print(A[::2])#(1,3)Print(1inchA#Truereversed (a)Print(a)#reversed is not valid for tuples#Chapter II Summary of new functionsCMP (x, y)#compares two values, returns the X-y value DifferenceLen (Sequence)#the length of a sequenceList (iterator)#convert a sequence into a listMax (arguments)#the maximum value of a parameterMin (arguments)#y The minimum value of a parameterReversed (Sequence)#Reverse iterate a tuple

02-Tuple of basic python learning

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.