selinap.com

To leave furtively and stealthily.

Home » Python

Python: Initialize list and tuple values

April 15th, 2008

This tutorial will show how to give a Python list an initial value.

To initialize list myTuple values to 0, with 10 items:

1
myTuple = [0]*10

If we need to have 5 items of a tuple with the value 0 and the rest 5 with the value 1:

1
myTuple = [0]*5 + [1]*5

To initialize list myList values to 0, with 10 items:

1
myList = (0,)*10

If we need to have 5 item of list with the value 0 and the rest 5 with the value 1:

1
myList = (0,)*5 + (1,)*5

For list, don’t forget the comma ‘,’. It means one item.

Related Articles:

Popular Articles:

Spread/Promote this article.

Digg | Del.icio.us | Stumble | Y! MyWeb | Y! Buzz | Fave It! | Reddit

Subscribe for free.

 Subscribe to Selinap.com feed right now!

 Get Updates by Email

Tags: , , ,

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="">


© Copyright 2008 - 2009 selinap.com
Entries (RSS) and Comments (RSS).