<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:xhtml="http://www.w3.org/1999/xhtml"
        xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"
        xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
    
    <url>
        <loc>https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:automating-tasks-with-lists/x5279a44ae0ab15d6:list-indices/v/scripts-and-sequences</loc>
        
        <xhtml:link rel="alternate" hreflang="en"
                    href="https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:automating-tasks-with-lists/x5279a44ae0ab15d6:list-indices/v/scripts-and-sequences" />
        
        <lastmod>2025-05-14T20:16:30.28353128Z</lastmod>
        
        <PageMap xmlns="http://www.google.com/schemas/sitemap-pagemap/1.0">
            <DataObject type="document" id="scripts-and-sequences">
            <Attribute name="title">Scripts and sequences</Attribute>
            <Attribute name="description">How can programs make our lives easier? Learn how programmers use scripts to automate complex, repetitive, or time-consuming tasks. To operate on large amounts of data, we need a way to organize it. What kinds of data can we store in an ordered sequence?</Attribute>
            <Attribute name="author">Kim Merrill</Attribute>
            <Attribute name="type">video</Attribute>
            
            </DataObject>
        </PageMap>
        
        <video:video>
            <video:thumbnail_loc>https://cdn.kastatic.org/ka_thumbnails_cache/4441d04b-1649-4797-ae60-e86ef32e2c05_1280_720_base.png</video:thumbnail_loc>
            <video:title>Scripts and sequences</video:title>
            <video:description>How can programs make our lives easier? Learn how programmers use scripts to automate complex, repetitive, or time-consuming tasks. To operate on large amounts of data, we need a way to organize it. What kinds of data can we store in an ordered sequence?</video:description>
            <video:player_loc>https://cdn.kastatic.org/ka-youtube-converted/v1C4FutndXg.mp4/v1C4FutndXg.mp4</video:player_loc>
            <video:duration>144</video:duration>
            <video:category>Python list indices</video:category>
        </video:video>
        
    </url>
    
    <url>
        <loc>https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:automating-tasks-with-lists/x5279a44ae0ab15d6:list-indices/v/lists</loc>
        
        <xhtml:link rel="alternate" hreflang="en"
                    href="https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:automating-tasks-with-lists/x5279a44ae0ab15d6:list-indices/v/lists" />
        
        <lastmod>2025-04-10T17:36:12.994752655Z</lastmod>
        
        <PageMap xmlns="http://www.google.com/schemas/sitemap-pagemap/1.0">
            <DataObject type="document" id="lists">
            <Attribute name="title">Lists</Attribute>
            <Attribute name="description">How can we keep track of a bunch of related data? Write a list definition to store multiple values in a single container. Use list indices to access elements based on their position in the list. View the program used in this video at: https://www.khanacademy.org/python-program/lists/5936313656262656</Attribute>
            <Attribute name="author">Kim Merrill</Attribute>
            <Attribute name="type">video</Attribute>
            
            </DataObject>
        </PageMap>
        
        <video:video>
            <video:thumbnail_loc>https://cdn.kastatic.org/ka_thumbnails_cache/7bb7de7e-6ecc-47c9-b742-f5096a3adbf2_1280_720_base.png</video:thumbnail_loc>
            <video:title>Lists</video:title>
            <video:description>How can we keep track of a bunch of related data? Write a list definition to store multiple values in a single container. Use list indices to access elements based on their position in the list. View the program used in this video at: https://www.khanacademy.org/python-program/lists/5936313656262656</video:description>
            <video:player_loc>https://cdn.kastatic.org/ka-youtube-converted/IaEcrHxjoCM.mp4/IaEcrHxjoCM.mp4</video:player_loc>
            <video:duration>241</video:duration>
            <video:category>Python list indices</video:category>
        </video:video>
        
    </url>
    
    <url>
        <loc>https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:automating-tasks-with-lists/x5279a44ae0ab15d6:list-indices/a/list-indexing</loc>
        
        <xhtml:link rel="alternate" hreflang="en"
                    href="https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:automating-tasks-with-lists/x5279a44ae0ab15d6:list-indices/a/list-indexing" />
        
        <lastmod>2026-02-17T23:20:43.373798125Z</lastmod>
        
        <PageMap xmlns="http://www.google.com/schemas/sitemap-pagemap/1.0">
            <DataObject type="document" id="list-indexing">
            <Attribute name="title">List indexing</Attribute>
            <Attribute name="description">Access the elements of a list using indices. Use alternate access patterns like negative indices and slices.</Attribute>
            
            <Attribute name="type">article</Attribute>
            
            </DataObject>
        </PageMap>
        
    </url>
    
    <url>
        <loc>https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:automating-tasks-with-lists/x5279a44ae0ab15d6:list-indices/v/tracing-lists</loc>
        
        <xhtml:link rel="alternate" hreflang="en"
                    href="https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:automating-tasks-with-lists/x5279a44ae0ab15d6:list-indices/v/tracing-lists" />
        
        <lastmod>2025-04-10T18:07:27.662765297Z</lastmod>
        
        <PageMap xmlns="http://www.google.com/schemas/sitemap-pagemap/1.0">
            <DataObject type="document" id="tracing-lists">
            <Attribute name="title">Tracing lists</Attribute>
            <Attribute name="description">How does the computer store a list in memory? Trace a program step-by-step to see how the computer interprets list definitions, list accesses, and list assignments. Discover why list indices start at zero instead of one! View the program used in this video at: https://www.khanacademy.org/python-program/tracing-lists/5520436670611456</Attribute>
            <Attribute name="author">Kim Merrill</Attribute>
            <Attribute name="type">video</Attribute>
            
            </DataObject>
        </PageMap>
        
        <video:video>
            <video:thumbnail_loc>https://cdn.kastatic.org/ka_thumbnails_cache/fd2e4314-1176-4f76-8d29-96d0b3d67b18_1280_720_base.png</video:thumbnail_loc>
            <video:title>Tracing lists</video:title>
            <video:description>How does the computer store a list in memory? Trace a program step-by-step to see how the computer interprets list definitions, list accesses, and list assignments. Discover why list indices start at zero instead of one! View the program used in this video at: https://www.khanacademy.org/python-program/tracing-lists/5520436670611456</video:description>
            <video:player_loc>https://cdn.kastatic.org/ka-youtube-converted/m9pvxuHb5y8.mp4/m9pvxuHb5y8.mp4</video:player_loc>
            <video:duration>358</video:duration>
            <video:category>Python list indices</video:category>
        </video:video>
        
    </url>
    
    <url>
        <loc>https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:automating-tasks-with-lists/x5279a44ae0ab15d6:list-indices/e/trace-list-indices</loc>
        
        <xhtml:link rel="alternate" hreflang="en"
                    href="https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:automating-tasks-with-lists/x5279a44ae0ab15d6:list-indices/e/trace-list-indices" />
        
        <lastmod>2025-09-12T02:00:44.915137743Z</lastmod>
        
        <PageMap xmlns="http://www.google.com/schemas/sitemap-pagemap/1.0">
            <DataObject type="document" id="trace-list-indices">
            <Attribute name="title">Trace list indices</Attribute>
            <Attribute name="description">Trace list accesses and updates using indices.</Attribute>
            <Attribute name="author">Nathaniel Shak</Attribute>
            <Attribute name="type">exercise</Attribute>
            
            </DataObject>
        </PageMap>
        
    </url>
    
    <url>
        <loc>https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:automating-tasks-with-lists/x5279a44ae0ab15d6:list-indices/pc/challenge-dna-mutation</loc>
        
        <xhtml:link rel="alternate" hreflang="en"
                    href="https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:automating-tasks-with-lists/x5279a44ae0ab15d6:list-indices/pc/challenge-dna-mutation" />
        
        <lastmod>2025-07-29T19:31:52.932562035Z</lastmod>
        
        <PageMap xmlns="http://www.google.com/schemas/sitemap-pagemap/1.0">
            <DataObject type="document" id="challenge-dna-mutation">
            <Attribute name="title">Challenge: DNA mutation</Attribute>
            <Attribute name="description">Practice list indexing to apply random mutations to a DNA sequence.</Attribute>
            
            <Attribute name="type">challenge</Attribute>
            
            </DataObject>
        </PageMap>
        
    </url>
    
</urlset>
