0% found this document useful (0 votes)
84 views

Udemy Course Report Chapter - 1-Introduction

This document summarizes the chapters and content of a Udemy course on Python programming. The course has 23 chapters that introduce Python installations, data types, print and input functions, conditional expressions, operators, loops, functions, and strings. Exercises are included to help learn each topic. The conclusion expresses that the course helped reinforce and clarify existing Python knowledge and the student's goal is to improve their final exam grade over their midterm.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
84 views

Udemy Course Report Chapter - 1-Introduction

This document summarizes the chapters and content of a Udemy course on Python programming. The course has 23 chapters that introduce Python installations, data types, print and input functions, conditional expressions, operators, loops, functions, and strings. Exercises are included to help learn each topic. The conclusion expresses that the course helped reinforce and clarify existing Python knowledge and the student's goal is to improve their final exam grade over their midterm.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

UDEMY COURSE REPORT

CHAPTER -1- INTRODUCTION


In This part, generally teacher talk about what are we do in this course? And what are
our projects? the teacher in general talked about how to download the python program and
what to do before running the python program. Teacher in general explained the topics in
the course. this course has 23 titles, some titles for advanced students but when you
complete the course you have a lot of ideas about phyton. Let's examine the titles one by
one;

• Chapter 2= this topic describes how to install the required programs into Windows
• Chapter 3= this title describes general data types and makes exercises.
• Chapter 4= this title describes the print function and makes exercises.
• Chapter 5= this title describes the input function and makes exercises.
• Chapter 6= this title gives information about conditional transactions and makes
exercises.
• Chapter 7= this title talks about operators and makes exercises.
• Chapter 8= this title speaks for and while looping and makes exercises.
• Chapter 9= this title describes the functions and doing exercises.
• Chapter 10= this title tells the strings and doing exercises

Actually this course have 23 course but courses after 10th course for advanced level students so i
don’t add my report these titles.

CHAPTER -2- Program Installations


In this part teacher talk about how to install the required programs? Actually this is easiest part
of the course. We are opening the https://www.python.org/downloads/ website and select Phyton
version 3.xx.xx. We downloaded the setup file and click this file. We follow the instructions and our
program is ready for first run.

Chapter -3- General Data Types


In this part, we learned different data types which is integer, float and string and and make
some exercises. Teacher shows some examples and we made examples.

String= this data consists of texts.

Float= this data consist of fractured numbers


İnteger= this data consists of whole numbers
Chapter -4- Print Function
In this part, we learned print function, what is the print function and and make some
exercises? Generally print function is everything of Phyton. We write some codes. For example,
we've written a few codes, and we need to use the print function if we want to see it in the app.

Chapter -5- Input Function


In this part, we learned input function and and make some exercises. In general, we get
information from the user in the input function. In more detail, we get the information from the user,
and we print that information on the screen in a different way.

Chapter -6- Conditional Expressions


In this part, we learned conditional expressions and make some exercises. Conditional
expressions are examined in two parts.

If= If we want to provide if we want to give 2 options. To explain;


Let’s x be equal to three and say "false" if "x" is less than five.

the above written statement is printed correctly as code. Because it's less than three, but if we wrote
a number larger than five, it would be printed incorrectly.

let's write as a code;

x = 3
if x < 5:
print('true')
if x > 5:
print('false')
print('Finish')
True
Finish

Chapter -7- Operators


In this part, we learned operators and make some exercises. in this topic we learned to write
mathematical operations in python program;
+ = addition
-= extraction
*= multiply
/= division

Chapter -8- For and While Looping


In this part, we learned for and while looping and make some exercises. Loops are useful to
write individual print commands without having to print a number of linked numbers in general.
Loops can be used for integer, string and float;

For= The for loop is used to write something in sequence. In summary, we can use the for loop
instead of giving the individual print command and get the same result as the single print command

While= We use the while loop for conditional expressions.

Chapter -9- Functions


In this part, we learned functions and make some exercises. Functions are generally used to
execute all commands under a heading. If there is a code in the function we define, we will execute
all of these codes with the code we have defined.

Some functions;

Print ()
Len ()
Range ()

Chapter -10- Strings


In this chapter, we learned strings and make some exercises. In this section, we have seen in
detail what is the string we have defined before and where it is used. In this section, we learned how
to format strings and use the format () method.

Conclusion
In this course i learned different things and I learned different things on this course and I
understood things more clearly by repeating things I knew earlier. I was very pleased with the
expression of Volkan Tasci who told the course. The purpose of this course was to get a higher final
grade than my midterm grade. I hope I can reach that goal.

Ahmet Baturalp Daban


17050411047
Civil Engineering

You might also like