<?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%2FSets-in-Python%2FEnglish-timed</id>
		<title>Python-3.4.3/C3/Sets-in-Python/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%2FSets-in-Python%2FEnglish-timed"/>
		<link rel="alternate" type="text/html" href="https://script.spoken-tutorial.org/index.php?title=Python-3.4.3/C3/Sets-in-Python/English-timed&amp;action=history"/>
		<updated>2026-04-07T07:28:06Z</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/Sets-in-Python/English-timed&amp;diff=47676&amp;oldid=prev</id>
		<title>PoojaMoolya: Created page with &quot; {| border=1 |  &lt;center&gt;'''Time'''&lt;/center&gt; |  &lt;center&gt;'''Narration'''&lt;/center&gt;  |- |  00:01 |  Welcome to the spoken tutorial on '''Sets in Python'''.   |- |  00:06 |  In thi...&quot;</title>
		<link rel="alternate" type="text/html" href="https://script.spoken-tutorial.org/index.php?title=Python-3.4.3/C3/Sets-in-Python/English-timed&amp;diff=47676&amp;oldid=prev"/>
				<updated>2019-06-04T10:33:46Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot; {| border=1 |  &amp;lt;center&amp;gt;&amp;#039;&amp;#039;&amp;#039;Time&amp;#039;&amp;#039;&amp;#039;&amp;lt;/center&amp;gt; |  &amp;lt;center&amp;gt;&amp;#039;&amp;#039;&amp;#039;Narration&amp;#039;&amp;#039;&amp;#039;&amp;lt;/center&amp;gt;  |- |  00:01 |  Welcome to the spoken tutorial on &amp;#039;&amp;#039;&amp;#039;Sets in Python&amp;#039;&amp;#039;&amp;#039;.   |- |  00:06 |  In thi...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;
{| border=1&lt;br /&gt;
|  &amp;lt;center&amp;gt;'''Time'''&amp;lt;/center&amp;gt;&lt;br /&gt;
|  &amp;lt;center&amp;gt;'''Narration'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  00:01&lt;br /&gt;
|  Welcome to the spoken tutorial on '''Sets in Python'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  00:06&lt;br /&gt;
|  In this tutorial, you will learn to, Create '''sets''' from '''lists''' &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 00:12&lt;br /&gt;
|  Perform '''union, intersection''' and '''symmetric difference operations'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 00:18&lt;br /&gt;
|  Check if a '''set''' is a '''subset''' of other and&lt;br /&gt;
&lt;br /&gt;
Understand various similarities with '''lists'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 00:27&lt;br /&gt;
|  To record this tutorial, I am using &lt;br /&gt;
&lt;br /&gt;
'''Ubuntu Linux 16.04''' operating system&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 00:35&lt;br /&gt;
| '''Python 3.4.3 '''and '''IPython 5.1.0'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  00:42&lt;br /&gt;
| To practise this tutorial, you should know how to run basic '''Python '''commands on the '''ipython console '''and use '''lists'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  00:53&lt;br /&gt;
| If not, see the relevant '''Python '''tutorials on this website.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  00:58&lt;br /&gt;
|  First let us see the overview of '''sets'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  01:02&lt;br /&gt;
| '''Sets''' are unordered collections of unique '''elements'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  01:07&lt;br /&gt;
| The '''set''' itself is '''mutable'''. &lt;br /&gt;
&lt;br /&gt;
We can add or remove '''items''' from it.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 01:14&lt;br /&gt;
| Let us start '''ipython'''.&lt;br /&gt;
&lt;br /&gt;
Open the '''terminal.'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 01:19&lt;br /&gt;
| Type '''ipython3 '''and press '''Enter.'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  01:24&lt;br /&gt;
| From here onwards, remember to press the '''Enter''' key after typing every command on the '''terminal'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  01:31&lt;br /&gt;
|  Let us look at how to input '''sets'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 01:35&lt;br /&gt;
|Type, &lt;br /&gt;
'''a''''' underscore '''''list '''''is equal to inside square brackets '''''1 '''''comma''''' 2 '''''comma''''' 1 '''''comma''''' 4 '''''comma''''' 5 '''''comma''''' 6 '''''comma''''' 2'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 01:47&lt;br /&gt;
|Type, '''a '''''is equal to '''''set '''''inside brackets '''''a '''''underscore '''''list'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  01:54&lt;br /&gt;
| Then type,''' a'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 01:57&lt;br /&gt;
|We can see that duplicates are removed and the '''set''' contains only unique '''elements'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 02:03&lt;br /&gt;
|  '''Sets''' can also be created directly as follows&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 02:08&lt;br /&gt;
|Type, '''b '''''is equal to inside curly braces '''''1 '''''comma''''' 2 '''''comma''''' 1 '''''comma''''' 4 '''''comma''''' 5 '''''comma''''' 6 '''''comma''''' 2'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 02:19&lt;br /&gt;
|Type, '''b'''. As before, we see that the '''set''' contains only unique '''elements'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  02:27&lt;br /&gt;
|  To create an''' empty set, '''type, '''c '''''is equal to '''''set '''''open and close brackets''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 02:36&lt;br /&gt;
|Note that '''d '''''is equal to open and close curly braces'' creates an empty dictionary, not an empty '''set'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  02:45&lt;br /&gt;
|  '''Sets''' can contain '''numbers, strings''' and '''tuples.''' &lt;br /&gt;
&lt;br /&gt;
But cannot contain '''mutable elements''' such as '''lists''' or '''dictionaries'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  02:56&lt;br /&gt;
| Type, '''b '''''underscore '''''list '''''is equal to inside square brackets again inside square brackets '''''1 '''''comma''''' 2 '''''comma''''' 1''' ''comma''''' 6 '''''comma''''' 2 '''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  03:09&lt;br /&gt;
| Now type, '''b '''''is equal to''''' set '''''inside brackets '''''b '''''underscore '''''list'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  03:17&lt;br /&gt;
| As you can see, it gives a '''TypeError.'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 03:21&lt;br /&gt;
|  Now let us perform some '''operations''' on '''sets'''. &lt;br /&gt;
&lt;br /&gt;
For this, we will first create a pair of '''sets.''' &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  03:29&lt;br /&gt;
| Type the '''sets''' as shown.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  03:33&lt;br /&gt;
|  Here, '''f '''is the '''set''' of '''fibonacci''' numbers from 1 to 10.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  03:39&lt;br /&gt;
| And '''p''' is the '''set''' of '''prime''' numbers from 1 to 15.''' '''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 03:44&lt;br /&gt;
|  Various '''operations''' can be performed on '''sets'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  03:47&lt;br /&gt;
| First we will add an '''element''' to a '''set''' by using '''add method'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  03:53&lt;br /&gt;
| Type, '''f '''''dot '''''add''''' inside brackets '''''13'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  03:58&lt;br /&gt;
| Now type, '''f'''&lt;br /&gt;
&lt;br /&gt;
As you can see, '''13 '''is added to the set '''f.'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  04:06&lt;br /&gt;
|  '''add method''' has no effect if the '''element''' is already present.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  04:11&lt;br /&gt;
| Type, '''f '''''dot''''' add '''''inside brackets''''' 13'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  04:16&lt;br /&gt;
| Type, '''f'''&lt;br /&gt;
&lt;br /&gt;
As you can see, '''13 '''is not added this time.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 04:23&lt;br /&gt;
|  Next we will learn to remove an '''element''' using '''remove method'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  04:28&lt;br /&gt;
| Type, '''p '''''dot '''''remove '''''inside brackets '''''13'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  04:34&lt;br /&gt;
| Now type, '''p'''. As you can see, '''13 '''is removed from the set '''p'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 04:41 &lt;br /&gt;
|  If the '''element''' is not a '''member''', it raises a '''KeyError.'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  04:46&lt;br /&gt;
| Type, '''p '''''dot '''''remove '''''inside brackets '''''18'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  04:52&lt;br /&gt;
| '''KeyError '''is raised since '''element 18 '''is not present in '''p.'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  04:57&lt;br /&gt;
|  The''' pipe''' character stands for '''union.'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  05:01&lt;br /&gt;
| Type, '''f '''''pipe''''' p '''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  05:06&lt;br /&gt;
| Or type, '''f '''''dot '''''union '''''inside brackets '''''p'''&lt;br /&gt;
&lt;br /&gt;
It gave the '''union''' of '''f '''and''' p '''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  05:16&lt;br /&gt;
|  The '''ampersand''' character stands for '''intersection'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  05:20&lt;br /&gt;
| Type, '''f '''''ampersand''''' p'''&lt;br /&gt;
&lt;br /&gt;
Or type, '''f '''''dot '''''intersection '''''inside brackets '''''p '''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  05:30&lt;br /&gt;
| It gave the '''intersection''' of '''f''' and '''p.''' &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  05:34&lt;br /&gt;
|  Type, '''f '''''minus''''' p'''&lt;br /&gt;
&lt;br /&gt;
Or type, '''f '''''dot '''''difference '''''inside brackets '''''p'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  05:44&lt;br /&gt;
| It gave all the '''elements''' that are in '''f''' but not in '''p'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  05:50&lt;br /&gt;
|  Type, '''f '''''caret''''' p'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  05:54&lt;br /&gt;
| Or type, '''f '''''dot '''''symmetric '''''underscore '''''difference '''''inside brackets '''''p'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  06:01&lt;br /&gt;
| It gives all the '''elements''' in '''f''' '''union''' '''p''' but not in '''f''' '''intersection''' '''p'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  06:08&lt;br /&gt;
| In mathematical terms, it gives the '''symmetric difference'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  06:13&lt;br /&gt;
|  '''Sets''' also support checking of '''subsets'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  06:17&lt;br /&gt;
| Type, '''a '''''is equal to '''''set''''' inside brackets inside square brackets '''''1 '''''comma '''''2 '''''comma '''''3 '''''comma '''''4'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  06:27&lt;br /&gt;
| Type, '''b '''''is equal to '''''set '''''inside brackets inside square brackets '''''1 '''''comma''''' 2 '''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  06:35&lt;br /&gt;
| Now type, '''b''''' less than or equal to '''''a'''&lt;br /&gt;
&lt;br /&gt;
Or type, '''b '''''dot '''''issubset '''''inside brackets '''''a'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  06:47&lt;br /&gt;
| It gives ''' True '''since '''b''' is a '''subset''' of '''a. '''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  06:52&lt;br /&gt;
|  '''Sets''' also support checking of '''supersets'''.&lt;br /&gt;
&lt;br /&gt;
Type, '''b '''''greater than or equal to '''''a'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  07:01&lt;br /&gt;
| Or type, '''b '''''dot '''''issuperset '''''inside brackets '''''a'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  07:08&lt;br /&gt;
| We get '''False''' since '''b '''is not a superset of '''a'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 07:14&lt;br /&gt;
|  Every '''set''' is a '''subset''' as well as a '''superset''' of itself.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  07:20&lt;br /&gt;
| Type,  '''a '''''less than or equal to '''''a'''&lt;br /&gt;
&lt;br /&gt;
'''a''''' greater than or equal to '''''a'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  07:28&lt;br /&gt;
| It gives '''True''' in both cases since''' a '''is a''' superset '''and''' subset''' of itself'''. '''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  07:35&lt;br /&gt;
|  Elements of a '''set''' can be accessed using '''for loop'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  07:39&lt;br /&gt;
| Type, '''for x in a '''''colon'' '''print '''''inside brackets '''''x'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  07:47&lt;br /&gt;
| The '''items''' from the '''set''' will not appear in any specific order.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  07:52&lt;br /&gt;
|  The '''length''' and '''containership''' check on '''sets''' are similar as in '''lists''' and '''tuples'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  07:59&lt;br /&gt;
| Type, '''len '''''inside brackets '''''a '''&lt;br /&gt;
&lt;br /&gt;
It shows 4'''. '''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  08:07&lt;br /&gt;
|  Type,&lt;br /&gt;
&lt;br /&gt;
'''1 in a'''&lt;br /&gt;
&lt;br /&gt;
'''7 in a'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  08:13&lt;br /&gt;
| It prints''' True '''and''' False '''respectively''' '''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  08:18&lt;br /&gt;
|  '''Sets''' do not support '''indexing'''. &lt;br /&gt;
&lt;br /&gt;
Hence, '''slicing''' and '''striding''' are not valid on '''sets'''. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  08:25&lt;br /&gt;
|  Pause the video. &lt;br /&gt;
&lt;br /&gt;
Try this exercise and then resume the video.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  08:31&lt;br /&gt;
|  Given a list of marks, as shown, list all the duplicate marks.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  08:37&lt;br /&gt;
|  Switch to the '''terminal''' for the solution.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 08:41&lt;br /&gt;
|  Type, '''marks '''''is equal to inside square brackets '''''20''''' comma''''' 23''''' comma''''' 22''''' comma''''' 23''''' comma''''' 20''''' comma''''' 21''''' comma''''' 23 '''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  08:53&lt;br /&gt;
| '''marks '''''underscore '''''set '''''is equal to '''''set '''''inside brackets '''''marks'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  09:00&lt;br /&gt;
| '''for num in marks '''''underscore '''''set''''' colon''&lt;br /&gt;
&lt;br /&gt;
'''marks''''' dot '''''remove '''''inside brackets '''''num'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  09:10&lt;br /&gt;
| '''remove method''' only removes the first occurrence of an '''element''' from the '''list'''.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  09:17&lt;br /&gt;
|  Type, '''duplicates '''''is equal to '''''set''''' inside bracket '''''marks '''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  09:24&lt;br /&gt;
| Now type, '''duplicates'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  09:28&lt;br /&gt;
| We now have duplicate marks in the '''set duplicates.''' &lt;br /&gt;
&lt;br /&gt;
Hence, we have obtained our required solution.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  09:37&lt;br /&gt;
|  This brings us to the end of this tutorial. Let us summarize. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  09:43&lt;br /&gt;
| In this tutorial, we have learnt to, Make '''sets''' from '''lists '''or by using curly braces&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  09:50&lt;br /&gt;
| Perform '''union, intersection''' and '''symmetric difference operations'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  09:55&lt;br /&gt;
|  Check if a '''set''' is a '''subset''' of other using the ''less than or equal to'' operator&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  10:02&lt;br /&gt;
|  Understand the various similarities with '''lists''' like length and containership &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  10:08&lt;br /&gt;
|  Here are some self assessment questions for you to solve.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  10:12&lt;br /&gt;
| First. If '''a '''is assigned as follows, what is '''set '''''of'' '''a'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  10:18&lt;br /&gt;
|  Second. Given '''odd''' and '''squares''' as shown.  How do you find the '''symmetric difference''' of these two '''sets'''?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  10:27&lt;br /&gt;
|  Third. If '''a''' is a '''set''', how do you check if a variable '''b''' exists in '''a'''? &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  10:34&lt;br /&gt;
|  And the answers,&lt;br /&gt;
&lt;br /&gt;
First. '''set '''''of '''''a''' will have all the common '''elements''' in the '''list''' '''a''', that is 1 ''comma'' 2 ''comma'' 3 ''comma'' 5 ''comma'' 8. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  10:46&lt;br /&gt;
|  Second. To find the '''symmetric difference''' between two '''sets''', we use the operator ''caret''. So we can type '''odd '''''caret '''''squares'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  10:56&lt;br /&gt;
| Third. To check the containership, we type, '''b in a'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  11:01&lt;br /&gt;
|  Please post your timed queries in this forum.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  11:05&lt;br /&gt;
|  Please post your general queries on Python in this forum.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 11:10&lt;br /&gt;
| FOSSEE team coordinates the TBC project.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  11:15&lt;br /&gt;
|  Spoken Tutorial Project is funded by NMEICT, MHRD, Govt. of India.&lt;br /&gt;
&lt;br /&gt;
For more details, visit this website.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  11:25&lt;br /&gt;
|  This is Priya from IIT Bombay signing off.&lt;br /&gt;
&lt;br /&gt;
Thanks for watching.&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PoojaMoolya</name></author>	</entry>

	</feed>