0% found this document useful (0 votes)
27 views3 pages

Python For Beginners - A Practic - Daniel Correa - Part7

Uploaded by

Kabir West
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
0% found this document useful (0 votes)
27 views3 pages

Python For Beginners - A Practic - Daniel Correa - Part7

Uploaded by

Kabir West
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
You are on page 1/ 3
Chapter 01 - Introduction We will begin our journey to learn to program with Python. In this book, we will cover many of the essential elements required for computer program- ming, as well as the main elements of Python. To get started, in this chapter, we will explain the book's design and how to use it effectively. Next, we will cover the following sections: 1. Book chapters. 2. How to read this book. 3. Book repository. 4. Cheat sheet. 1.1. Book chapters This book is divided into 19 chapters. Here’s a brief overview of what you can expect to learn in each chapter: Chapter 01 - Introduction. Provides an over- view of the book and its contents. Chapter 02 - Computers and programming. Introduces the key concepts of computers, programming, programming languages, and algorithms. It also breaks some common myths about programming. Chapter 03 - Python. Introduces the Python programming language, explains how it compares to other languages, and describes some applications that could be developed using Python. Chapter 04 - Hello world in Colab. Describes how to use Colab, a popular tool for coding in Python. Chapter 05 - Int, float, and str variables. Introduces the fundamental concept of vari- ables and covers three types of variables: int, float, and str. It also explains how to display information on the computer screen. Chapter 06 - Data input and output. Describes how to perform data input and output operations, focusing on the print function (for displaying information) and the input function (for capturing informa- tion from the keyboard). Chapter 07 - Simple conditionals. Intro- duces basic concepts for handling conditions in programming and shows how to imple- ment a simple conditional based on the if- then statement in Python. Chapter 08 - Multiple conditionals. Devel- ops other conditional statements such as if- then-else, if-then-elif-else, and nested con- ditionals to handle multiple conditions in a program. Chapter 09 - While loop. Introduces the concept of loops in programming and shows how to define and use a while loop.

You might also like