<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://script.spoken-tutorial.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://script.spoken-tutorial.org/index.php?action=history&amp;feed=atom&amp;title=Python-3.4.3%2FC3%2FGetting-started-with-Lists%2FEnglish-timed</id>
		<title>Python-3.4.3/C3/Getting-started-with-Lists/English-timed - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://script.spoken-tutorial.org/index.php?action=history&amp;feed=atom&amp;title=Python-3.4.3%2FC3%2FGetting-started-with-Lists%2FEnglish-timed"/>
		<link rel="alternate" type="text/html" href="https://script.spoken-tutorial.org/index.php?title=Python-3.4.3/C3/Getting-started-with-Lists/English-timed&amp;action=history"/>
		<updated>2026-04-21T19:50:23Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.23.17</generator>

	<entry>
		<id>https://script.spoken-tutorial.org/index.php?title=Python-3.4.3/C3/Getting-started-with-Lists/English-timed&amp;diff=47742&amp;oldid=prev</id>
		<title>Pratik kamble: Created page with &quot;{| border=1 | '''Time''' |'''Narration'''  |- | 00:01 | Hello Friends. Welcome to the tutorial on &quot;'''Getting started with lists'''&quot;.   |- | 00:07 | At the end of this tutoria...&quot;</title>
		<link rel="alternate" type="text/html" href="https://script.spoken-tutorial.org/index.php?title=Python-3.4.3/C3/Getting-started-with-Lists/English-timed&amp;diff=47742&amp;oldid=prev"/>
				<updated>2019-06-11T06:52:54Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;{| border=1 | &amp;#039;&amp;#039;&amp;#039;Time&amp;#039;&amp;#039;&amp;#039; |&amp;#039;&amp;#039;&amp;#039;Narration&amp;#039;&amp;#039;&amp;#039;  |- | 00:01 | Hello Friends. Welcome to the tutorial on &amp;quot;&amp;#039;&amp;#039;&amp;#039;Getting started with lists&amp;#039;&amp;#039;&amp;#039;&amp;quot;.   |- | 00:07 | At the end of this tutoria...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{| border=1&lt;br /&gt;
| '''Time'''&lt;br /&gt;
|'''Narration'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 00:01&lt;br /&gt;
| Hello Friends. Welcome to the tutorial on &amp;quot;'''Getting started with lists'''&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 00:07&lt;br /&gt;
| At the end of this tutorial, you will be able to, &lt;br /&gt;
&lt;br /&gt;
Create '''lists '''&lt;br /&gt;
&lt;br /&gt;
Access '''list elements '''&lt;br /&gt;
&lt;br /&gt;
'''Append elements''' to '''lists''' and&lt;br /&gt;
&lt;br /&gt;
'''Delete elements''' from '''lists '''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 00:21&lt;br /&gt;
|To record this tutorial, I am using &lt;br /&gt;
&lt;br /&gt;
'''Ubuntu Linux 14.04''' operating system&lt;br /&gt;
&lt;br /&gt;
'''Python 3.4.3'''&lt;br /&gt;
&lt;br /&gt;
'''IPython 5.1.0'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 00:35&lt;br /&gt;
|To practise this tutorial, you should know how to &lt;br /&gt;
&lt;br /&gt;
run basic '''Python '''commands on the '''ipython console'''&lt;br /&gt;
&lt;br /&gt;
If not, see the relevant '''Python '''tutorials on this website.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|00:48&lt;br /&gt;
|What is a List? &lt;br /&gt;
&lt;br /&gt;
A List can store a sequence of elements.&lt;br /&gt;
&lt;br /&gt;
All elements need not be of the same data types&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 00:59&lt;br /&gt;
| Let us open the '''Terminal '''by pressing '''Ctrl+Alt+T '''keys simultaneously&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 01:06&lt;br /&gt;
| Now, type '''ipython3''' and press '''Enter'''. We are now in the '''ipython''' prompt.&lt;br /&gt;
Let us clear the '''terminal''' by pressing '''Ctrl + L''' for better view.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 01:20&lt;br /&gt;
| Let us define a '''list''' with a variable name '''mylist'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 01:25&lt;br /&gt;
|Type&lt;br /&gt;
&lt;br /&gt;
'''mylist '''''equal to'' ''inside square brackets inside quotes''''' spam '''''comma''''' '''''inside quotes '''''eggs''' ''comma''' ''hundred '''''comma''''' one point two three four '''and''' '''press '''Enter'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 01:45&lt;br /&gt;
|In '''Python, strings''' are always placed inside single or double quotes. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 01:52&lt;br /&gt;
| Now enter''' type '''within brackets '''mylist '''and'' ''press '''Enter'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 02:01&lt;br /&gt;
| Here '''type''' is a '''function''' which will return the '''datatype''' of the variable.&lt;br /&gt;
&lt;br /&gt;
'''mylist''' is a '''list datatype'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 02:10&lt;br /&gt;
| As we can see, '''lists''' can contain '''elements''' of different '''datatypes'''&lt;br /&gt;
&lt;br /&gt;
In '''mylist''', '''spam''' and '''eggs''' are '''strings''',  whereas '''hundred''' and''' one point two three four''' are '''integer''' and '''float''' respectively. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 02:27&lt;br /&gt;
| In the code typed earlier, the name '''mylist''' is a variable.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 02:32&lt;br /&gt;
|In '''Python''', a variable must either start with an alphabet or an '''underscore'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 02:39&lt;br /&gt;
|They cannot start with numbers and cannot be the same as '''Python keywords.''' &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 02:45&lt;br /&gt;
| You will learn about '''keywords''' as we proceed.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 02:49&lt;br /&gt;
|Few examples of keywords are '''“for, if, else, elif, while, in, def, or, and”.''' &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 03:00&lt;br /&gt;
|A variable name cannot have spaces or punctuation characters or any arithmetic characters.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 03:07&lt;br /&gt;
| These are some of the valid and invalid variable names.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 03:14&lt;br /&gt;
| Getting back to our '''lists''', the '''list''' could be created as '''num ''underscore ''list is ''equal to''' inside square brackets ''''''''one''' ''comma '''''two'''''' and press''' Enter'''&lt;br /&gt;
&lt;br /&gt;
or&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 03:32&lt;br /&gt;
|'''x '''''equal to inside square brackets inside quotes '''''a''''' comma inside quotes '''''b''''' ''and press''' Enter'''&lt;br /&gt;
&lt;br /&gt;
Any valid variable name could be used.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 03:50&lt;br /&gt;
| Let us now create an '''empty list '''with no elements. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 03:55&lt;br /&gt;
|Type '''myemptylist '''''is equal to open and close square brackets ''and press '''Enter'''. &lt;br /&gt;
This is an '''empty list''' without any '''element'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 04:08&lt;br /&gt;
| We can access an '''element''' of a '''list''' using its corresponding '''index''' or '''position'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 04:15&lt;br /&gt;
|'''Index value''' of the '''elements''' starts from 0, 1, 2 and so on.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 04:22&lt;br /&gt;
|'''Negative indices''' are used to access '''elements''' from the end. Which starts from -1, -2, and so on&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 04:33&lt;br /&gt;
|The syntax to get a specific '''list element''' is&lt;br /&gt;
&lt;br /&gt;
'''variable '''''inside square brackets '''''elements index value'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 04:44&lt;br /&gt;
| Switch to the '''terminal'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 04:47&lt;br /&gt;
| Type '''mylist'' '''inside square brackets''' ''zero '''and press '''Enter'''.&lt;br /&gt;
&lt;br /&gt;
As we can see''' mylist[0]''' gives the first '''element spam'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 05:00&lt;br /&gt;
|Type '''mylist '''''inside square brackets''' ''one '''and press '''Enter'''.&lt;br /&gt;
&lt;br /&gt;
'''mylist[1] '''gives the second '''element'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 05:11&lt;br /&gt;
| Pause the video. Try this exercise and then resume the video.&lt;br /&gt;
&lt;br /&gt;
What happens when you type '''mylist[-1]'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 05:21&lt;br /&gt;
| Switch to the '''terminal''' for solution&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 05:25&lt;br /&gt;
|Type '''mylist '''''inside square brackets '''''minus one''''' ''and''' '''press '''Enter'''. &lt;br /&gt;
&lt;br /&gt;
As you can see you get the last '''element''' which is '''one point two three four. '''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|05:39&lt;br /&gt;
| We can also create a '''list''' inside a '''list.'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 05:43&lt;br /&gt;
|This property makes '''lists heterogeneous data structures'''.  This is the syntax for '''list''' inside a '''list'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 05:53&lt;br /&gt;
| Let us include a '''list''' within a '''list''' for the variable '''doublelist'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 05:59&lt;br /&gt;
|Type the code as shown here: Here '''b c d''' is a '''list''' in '''list''' which is represented within square brackets inside a '''list'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 06:11&lt;br /&gt;
| Now let us fetch some element from '''doublelist'''.&lt;br /&gt;
&lt;br /&gt;
Type:''' doublelist '''''inside square brackets '''''one''' and press '''Enter'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 06:23&lt;br /&gt;
|We can see the output as '''b c d '''within square brackets. This is because the '''index value one''' contains the '''list''' inside a '''list''' as its '''element'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 06:37&lt;br /&gt;
| Now let us try to access a specific '''element''', say''' b''' from the '''list''' inside a '''list'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 06:45&lt;br /&gt;
|For this type: '''doublelist''''' inside square brackets ''one ''inside square brackets '''''zero '''and press '''Enter'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 06:57&lt;br /&gt;
|Here the 1st '''parameter''' represents the '''index''' of the '''list''' in the main '''list'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 07:04&lt;br /&gt;
|The second '''parameter''' represents the '''index value''' of '''b''' in the '''list''' inside the '''list'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 07:12&lt;br /&gt;
| Pause the video. Try this exercise and then resume the video.&lt;br /&gt;
&lt;br /&gt;
'''doublelist=[‘a’, [‘b’,’c’,’d’], 'and', 5, 6, 7, 8] '''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 07:18&lt;br /&gt;
| What is the command to get the '''element 'and'''' in the '''list ''doublelist'''''? &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 07:24&lt;br /&gt;
|  How would you get ''''and'''' using negative '''indices'''? &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 07:28&lt;br /&gt;
|  How would you get '''element 'd'''' from the '''list ''doublelist'''''? &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 07:33&lt;br /&gt;
| The solution is on your screen.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 07:38&lt;br /&gt;
| We can use '''len function''' to check the number of '''elements/length of '''in the '''list'''.&lt;br /&gt;
&lt;br /&gt;
The syntax is: '''len''' ''inside parentheses '''''variable'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 07:49&lt;br /&gt;
| Let us find the number of elements in '''mylist''' which we created earlier. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 07:55&lt;br /&gt;
|Switch to the''' terminal '''and clear the screen. Recall '''mylist''' by pressing up arrow key and press''' Enter.'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 08:05&lt;br /&gt;
|Type '''len '''''inside parentheses '''''mylist '''and press '''Enter.''' We get the length of '''mylist''' as '''four'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 08:16&lt;br /&gt;
| We can append '''elements''' to the '''list''' using the '''append function'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 08:21&lt;br /&gt;
|This '''function''' will add the '''element''' to the end of the '''list'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 08:26&lt;br /&gt;
|The syntax is: '''variable''' ''dot'' '''append''' within ''parentheses '''element''' to be added.''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 08:35&lt;br /&gt;
| Switch to the '''terminal'''&lt;br /&gt;
&lt;br /&gt;
Now type &lt;br /&gt;
&lt;br /&gt;
'''mylist''''' dot'' '''append''' ''inside parentheses within quotes''' ''sharp''' and''' '''press '''Enter'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 08:49&lt;br /&gt;
|Type''' mylist '''''dot'' '''append''' ''inside parentheses''' ''six'' '''''and''' '''press '''Enter.'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 08:57&lt;br /&gt;
| Let us check the '''updated mylist.''' Type''' mylist '''and press '''Enter ''' We can see '''mylist''' is '''appended''' with '''sharp''' and '''six''' at the end.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 09:10&lt;br /&gt;
|We can also remove '''elements''' from '''lists'''. &lt;br /&gt;
&lt;br /&gt;
There are two ways of doing it. One is by using the '''index '''with''' del keyword'''. &lt;br /&gt;
&lt;br /&gt;
Syntax is '''del '''variable ''inside square brackets '''element’s ''index value'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 09:29&lt;br /&gt;
|The other way is removing '''element''' by the value using '''remove function'''&lt;br /&gt;
&lt;br /&gt;
Syntax is '''variable '''''dot '''''remove '''''inside parentheses '''''element to be removed'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 09:43&lt;br /&gt;
| Switch to the''' terminal.'''&lt;br /&gt;
&lt;br /&gt;
Type '''mylist''' and press''' Enter '''to see the updated '''list'''.&lt;br /&gt;
&lt;br /&gt;
Type '''del '''''space '''''mylist '''''inside square brackets''''' one '''and press '''Enter.'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 10:01&lt;br /&gt;
|The '''keyword del''' deletes the '''element''' at '''index''' one, i.e the second '''element''' of the '''list, eggs'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 10:11&lt;br /&gt;
| Again type '''mylist''' and press''' Enter'''. We can see that the '''element eggs''' has been deleted from the '''list'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 10:22&lt;br /&gt;
| Let us delete the '''element hundred''' from '''mylist list'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|10:27&lt;br /&gt;
|For this we can use the '''function remove'''. Type '''mylist''''' dot '''''remove '''within parentheses''' hundred '''and press '''Enter.'''&lt;br /&gt;
&lt;br /&gt;
Let us check the '''updated mylist.'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 10:44&lt;br /&gt;
| What if the '''elements''' are repeated?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|10:47&lt;br /&gt;
|To check that, let’s do a small experiment.Type  '''mylist''''' dot '''''append '''within parentheses within quotes '''spam '''and press''' Enter'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 11:01&lt;br /&gt;
|Type '''mylist '''and press''' Enter''' Here is the '''updated mylist.'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 11:08&lt;br /&gt;
|It contains the '''element spam''' twice. One is at the start and the next is at the end of the '''list'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 11:17&lt;br /&gt;
| Now remove the '''element spam''' by typing: '''mylist '''''dot '''''remove '''''inside parentheses inside quotes'' '''spam '''and press '''Enter.'''&lt;br /&gt;
&lt;br /&gt;
Let us check '''updated mylist.'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 11:35&lt;br /&gt;
| We can see that only the first occurrence of ''''spam'''' has been removed.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 11:41&lt;br /&gt;
|The '''function remove''' removes the first occurrence of the '''element''' in the sequence.&lt;br /&gt;
&lt;br /&gt;
Remember, the '''del keyword''' removes the '''element''' by '''index value'''. '''remove function''' removes on the basis of '''element''' being passed on. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 11:57&lt;br /&gt;
| Using '''remove function''', we can also remove an '''element''' with its '''index value'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 12:03&lt;br /&gt;
| Let us try this with an example. Type''' k '''''is equal to inside square brackets '''''one''''' comma '''''two''''' comma '''''one''''' comma '''''three '''and press''' Enter''' &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 12:17&lt;br /&gt;
|Then type '''k '''''dot '''remove''' inside parentheses''''' k inside square brackets two '''and press''' Enter''' Type''' k '''and press '''Enter ''' We can see the output as'''[2,1,3].'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 12:36&lt;br /&gt;
|Since it '''deletes''' the first occurrence of what is returned by '''k '''''inside square brackets''''' two''' which is''' one'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 12:45&lt;br /&gt;
| Pause the video. Try this exercise and then resume the video.&lt;br /&gt;
&lt;br /&gt;
1. Delete the fourth '''element''' from the '''list doublelist'''.&lt;br /&gt;
&lt;br /&gt;
2. Remove ''''and'''' from the '''list doublelist'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 12:58&lt;br /&gt;
| The solution is on your screen.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 13:04&lt;br /&gt;
|This brings us to the end of this tutorial. &lt;br /&gt;
&lt;br /&gt;
In this tutorial, we have learnt to create:&lt;br /&gt;
&lt;br /&gt;
'''List''' with '''elements'''&lt;br /&gt;
&lt;br /&gt;
'''Empty list'''&lt;br /&gt;
&lt;br /&gt;
'''List''' within a '''list''' &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 13:18&lt;br /&gt;
|We also learnt to, &lt;br /&gt;
&lt;br /&gt;
Find out the '''list''' length using '''len function'''.&lt;br /&gt;
&lt;br /&gt;
Access '''elements''' using their '''index''' numbers. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 13:28&lt;br /&gt;
|Append '''elements''' to '''list''' using the '''function append'''. &lt;br /&gt;
&lt;br /&gt;
Delete '''element''' from list using the '''del''' and '''remove function'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 13:37&lt;br /&gt;
|Here are some self assessment questions for you to solve &lt;br /&gt;
&lt;br /&gt;
How do you create an '''empty list'''? &lt;br /&gt;
&lt;br /&gt;
Can you have a '''list''' inside a '''list'''? &lt;br /&gt;
&lt;br /&gt;
How would you access the last '''element''' of a '''list''' without finding its length? &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 13:54&lt;br /&gt;
| And the answers, &lt;br /&gt;
&lt;br /&gt;
1. We create an '''empty list''' just by leaving the space inside the square brackets empty. '''myemptylist''' equal to open and close square brackets.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 14:07&lt;br /&gt;
|2. Yes, '''list''' can contain all the other '''data types''', including '''list'''. &lt;br /&gt;
&lt;br /&gt;
3. Using negative '''indices''', we can access the last '''element''' from the '''list'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 14:19&lt;br /&gt;
| Please post your timed queries in this forum.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 14:23&lt;br /&gt;
| Please post your general queries on Python in this forum.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 14:28&lt;br /&gt;
| FOSSEE team coordinates the TBC project.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 14:33&lt;br /&gt;
| Spoken-tutorial is funded by NMEICT, MHRD, Govt. of India. For more details, visit this website.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 14:44&lt;br /&gt;
| This is Trupti Kini from IIT Bombay signing off. Thank you.&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Pratik kamble</name></author>	</entry>

	</feed>