Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE HTML>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <link rel="stylesheet" type="text/css" href="style.css">
- <title>Python</title>
- </head>
- <body>
- <div class="texto">
- <h2>Welcome to the Flying Circus</h2>
- <p>Python is a powerful, flexible programming language you can use in web/Internet development, to write
- desktop graphical user interfaces (GUIs), create games, and much more. Python is:</p>
- <ul>
- <li><strong>High-level</strong>, meaning reading and writing Python is really easy—it looks a lot like regular English!</li>
- <li><strong>Interpreted</strong>, meaning you don't need a compiler to write and run Python! You can write it here at Codecademy
- or even on your own computer (many are shipped with the Python interpreter built in—we'll get to the interpreter later in this lesson).</li>
- <li><strong>Object-oriented</strong>, meaning it allows users to manipulate data structures called <strong>objects</strong> in order to build and execute programs.
- We'll learn more about objects later.</li>
- <li><strong>Fun to use</strong>. Python is named after Monty Python's Flying Circus, and example code and tutorials
- often refer to the show and include jokes in order to make learning the language more interesting.</li>
- </ul>
- <p>This course assumes no previous knowledge of Python in particular or programming/computer science in general.</p>
- <div id="instrucoes">
- <h4>INSTRUCTIONS</h4>
- <p>Ready to learn Python? Click Save & Submit Code to continue!</p>
- </div>
- <div id="hint">
- <h4>Hint</h4>
- <p>If the loading bar fills but doesn't fade away, try refreshing the page.</p>
- </div>
- </div>
- <a id="voltar" href="#">[ voltar ]</a>
- <div class="codigo">
- print "Welcome to Python!"
- </div>
- <p>oi<p>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement