<?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:designing-algorithms-with-conditionals/x5279a44ae0ab15d6:compound-boolean-conditions/a/compound-boolean-expressions-with-logical-operators</loc>
        
        <xhtml:link rel="alternate" hreflang="en"
                    href="https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:designing-algorithms-with-conditionals/x5279a44ae0ab15d6:compound-boolean-conditions/a/compound-boolean-expressions-with-logical-operators" />
        
        <lastmod>2025-04-29T23:13:48.551241204Z</lastmod>
        
        <PageMap xmlns="http://www.google.com/schemas/sitemap-pagemap/1.0">
            <DataObject type="document" id="compound-boolean-expressions-with-logical-operators">
            <Attribute name="title">Logical operators</Attribute>
            <Attribute name="description">Learn how to combine multiple conditions into a compound boolean expression using the logical operators: not, and, or.</Attribute>
            
            <Attribute name="type">article</Attribute>
            
            </DataObject>
        </PageMap>
        
    </url>
    
    <url>
        <loc>https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:designing-algorithms-with-conditionals/x5279a44ae0ab15d6:compound-boolean-conditions/v/evaluating-compound-boolean-expressions</loc>
        
        <xhtml:link rel="alternate" hreflang="en"
                    href="https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:designing-algorithms-with-conditionals/x5279a44ae0ab15d6:compound-boolean-conditions/v/evaluating-compound-boolean-expressions" />
        
        <lastmod>2026-03-29T06:04:57.873105323Z</lastmod>
        
        <PageMap xmlns="http://www.google.com/schemas/sitemap-pagemap/1.0">
            <DataObject type="document" id="evaluating-compound-boolean-expressions">
            <Attribute name="title">Evaluating compound boolean expressions</Attribute>
            <Attribute name="description">Trace how the computer evaluates compound boolean expressions with the logical operators and, or, and not. See how the computer optimizes to short-circuit evaluation if it already knows the result.</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/997086f6-e504-41ce-a471-4eaf205701e8_1280_720_base.png</video:thumbnail_loc>
            <video:title>Evaluating compound boolean expressions</video:title>
            <video:description>Trace how the computer evaluates compound boolean expressions with the logical operators and, or, and not. See how the computer optimizes to short-circuit evaluation if it already knows the result.</video:description>
            <video:player_loc>https://cdn.kastatic.org/ka-youtube-converted/p7pJMvD2sag.mp4/p7pJMvD2sag.mp4</video:player_loc>
            <video:duration>276</video:duration>
            <video:category>Compound boolean expressions</video:category>
        </video:video>
        
    </url>
    
    <url>
        <loc>https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:designing-algorithms-with-conditionals/x5279a44ae0ab15d6:compound-boolean-conditions/e/evaluating-compound-boolean-expressions</loc>
        
        <xhtml:link rel="alternate" hreflang="en"
                    href="https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:designing-algorithms-with-conditionals/x5279a44ae0ab15d6:compound-boolean-conditions/e/evaluating-compound-boolean-expressions" />
        
        <lastmod>2025-07-28T18:39:02.457442099Z</lastmod>
        
        <PageMap xmlns="http://www.google.com/schemas/sitemap-pagemap/1.0">
            <DataObject type="document" id="evaluating-compound-boolean-expressions">
            <Attribute name="title">Evaluate compound boolean expressions</Attribute>
            <Attribute name="description">Evaluate compound boolean expressions with `and` and `or` operators.</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:designing-algorithms-with-conditionals/x5279a44ae0ab15d6:compound-boolean-conditions/v/booleans-program-design-content-moderation</loc>
        
        <xhtml:link rel="alternate" hreflang="en"
                    href="https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:designing-algorithms-with-conditionals/x5279a44ae0ab15d6:compound-boolean-conditions/v/booleans-program-design-content-moderation" />
        
        <lastmod>2024-12-02T21:11:23.197431827Z</lastmod>
        
        <PageMap xmlns="http://www.google.com/schemas/sitemap-pagemap/1.0">
            <DataObject type="document" id="booleans-program-design-content-moderation">
            <Attribute name="title">Program design: content moderation</Attribute>
            <Attribute name="description">Code along with a software engineer in this worked example using logical operators. Apply compound boolean expressions and if statements to design a content moderation algorithm. Use the logical and, or, and not operators to construct compound conditions that flag suspicious posts and feature useful posts. View the program used in this video at: https://www.khanacademy.org/python-program/content-moderation-booleans-program-design/6047366886637568</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/7f9a2943-9120-4a0d-ba59-9969006add91_1280_720_base.png</video:thumbnail_loc>
            <video:title>Program design: content moderation</video:title>
            <video:description>Code along with a software engineer in this worked example using logical operators. Apply compound boolean expressions and if statements to design a content moderation algorithm. Use the logical and, or, and not operators to construct compound conditions that flag suspicious posts and feature useful posts. View the program used in this video at: https://www.khanacademy.org/python-program/content-moderation-booleans-program-design/6047366886637568</video:description>
            <video:player_loc>https://cdn.kastatic.org/ka-youtube-converted/NMG8sR_1YTI.mp4/NMG8sR_1YTI.mp4</video:player_loc>
            <video:duration>289</video:duration>
            <video:category>Compound boolean expressions</video:category>
        </video:video>
        
    </url>
    
    <url>
        <loc>https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:designing-algorithms-with-conditionals/x5279a44ae0ab15d6:compound-boolean-conditions/pc/input-validation</loc>
        
        <xhtml:link rel="alternate" hreflang="en"
                    href="https://www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:designing-algorithms-with-conditionals/x5279a44ae0ab15d6:compound-boolean-conditions/pc/input-validation" />
        
        <lastmod>2025-07-29T23:31:19.793609631Z</lastmod>
        
        <PageMap xmlns="http://www.google.com/schemas/sitemap-pagemap/1.0">
            <DataObject type="document" id="input-validation">
            <Attribute name="title">Challenge: Date validation</Attribute>
            <Attribute name="description">Practice compound boolean conditions and conditionals to validate dates entered in a form.</Attribute>
            
            <Attribute name="type">challenge</Attribute>
            
            </DataObject>
        </PageMap>
        
    </url>
    
</urlset>
