Anda di halaman 1dari 11

Lists are enclosed in square brackets ([ and ]) and tuples in parentheses (( and )).

A list containing no elements is called an empty list, and a tuple with no elements is an empty tuple.

[10, 20, 30, 40, 50]


["spam", "bungee", "swallow"]
(2, 4, 6, 8)
("two", "four", "six", "eight")
[("cheese", "queso"), ("red", "rojo"), ("school", "escuela")]

The first example is a list of five integers


and the next is a list of three strings.
The third is a tuple containing four integers
followed by a tuple containing four strings.
The last is a list containing three tuples, each of which contains a pair of
strings.
String

X=’himanshu bisht’ is a string


title()=Uppercase the first alphabet of each word
LAMBDA function
Python supports the creation of anonymous functions (i.e. functions
that are not bound to a name) at runtime, using a construct called
"lambda". This is not exactly the same as lambda in functional
programming languages, but it is a very powerful concept that's well
integrated into Python and is often used in conjunction with typical
functional concepts like filter(), map() and reduce().
Example: >>>
...
def f (x): return x**2

>>> print f(8)


64
>>>
>>> g = lambda x: x**2
>>>
>>> print g(8)
64

Anda mungkin juga menyukai