Session 12: Instructor-led Live Training on Python full course | Python 3 API and CGI

preview_player
Показать описание
Free of Cost – Specialist in Python (with Flask Towards Data Science) basic to advance by World Record Holder - Mr. Vimal Daga.

➡️ IIEC-RISE Social Media Platforms :-

➡️ Join our Telegram channels :-

#pythonwithiiec #iiecrise #vimaldaga #worldrecordholder
Рекомендации по теме
Комментарии
Автор

Summary:
-> learned about loops in python
->various types of loops
->While Loop
For loop is execute for given no of time and while loop is
execute until given condition become false.
-> difference between while and for loop
->In 'for' loop the initialization once done is never repeated.
In while loop if initialization is done during condition checking, then
initialization is done each time the loop iterate.
->List Comprehension and its utility
->ist comprehensions return lists, they consist of brackets containing
the expression, which is executed for each element along
with the for loop to iterate over each element.
->inline in python
-> functions
Function is set or collection of predefined statements, when
we call the function at that moment
execution of codes started.
we can use list also.
-> we define the functions in python
->parentheses () are used in a function
->bugs in program
Bug is not an error but it is actually something, the user
don't want it to happen
->argument in function
->return keyword

bhavyamaddukuri
Автор

The session was good and I learned so many new things like:
1. in this session we learnt about for loop with list, functions, modules.
2. we started with list and created one list that has some email ids. We understand if we want to do something again and agin then the concept of loops come in to play. we can do the same thing using while loop but in while loop we need to fix how much time we need to repeat.
3. if we have a which changes dynamic then we need a loop that will fetch each item of list and end when nothing remain left. This is called itereation and for loop do iteration on list.
4. understand some use case of networking where packet must be recieve but don't know how much times iteration is required. In second example we have file and we want to read each line till last line and find something and make some changes. In another example we have one database and we want to retreive each row of the database the for loop best fit here.
5. every loop has to perform something that might be a calculation or printing these are rules and generally known as business logics.
6. we understand one simple algorithm where we are finding the square of number and put them into one list. But here we have one challenge which for such a simple task we need to wirte multiple lines but we need to make the simple task in one line which is done by list comprehension which provide more readability.
7. every newer language comes with the concept of functional programming which provide more readability and inline.
8. we used some conditional statement in for loop to print only positive values of list inside the new list. We learnt about bug which happen when the program gives the ouput but not as per requirement.
and many more things...
Your work is highly appreciated.
Thank you for giving your precious time and making our country a nation of creators.
RISE id : RISE 2020.83.8.1

manishverma
Автор

In this session I learned lots of concepts such as-
*About for loop and it's syntax
*about functions and their use cases
*how to define and call the function
*how to pass parameters to a function
*multiple arguments
*how to make code readable, etc...

tejshreegund
Автор

Today I learnt about
1. Function
2.multiple argument in a function
3. List comprehension
4.iteration
5.readability
6.what is about in a program
7.return keyword
8.use of append ()
9.for loop and while loop
10.importance of functional programming

smithaadiga
Автор

1.Learned few functions in list such as append() and len().
2.Learned how to traversing through list using for loop.
3.Learned about the concept of list comphrenshion and inline operation.
4.Learned how to use if else loop with the inline operation to improve the readablility.
5.Learned how to create and definne a function.
6.Learned how to call a function using static and dynamic values.
7.Learned about parameterised function.
8.Learned about what is arguments.
9.Learned how to return value from a function.
10.Learned that Function is basically a Variable.

nihals
Автор

I have learnt about the following topics -
1. About Loops and its difference between the while loop and for loop due to iteration.
2. Iteration is to make a program in finite loop as per list or data had it is used on for loop.
3. We try these loops over the list and trace the iterations and operations will work over the elements of list.
4. For loop is used to make an loop iterable and for while we need many time to change the value of number of time of an loop means hard code.
5. Many people and users try to implement their code/ programs that have more readability.. Hence, an inline approach was developed for the same.
6. List comprehension is a inline way to perform loops, conditions and many operations in a one list, that requires multiple lines of code. It used to implement the code in one line.
7. Functions are the user defined or systematic manner that used to the needs of the program.

harishkumar-pojf
Автор

From this session I got to understand about loops and it's types, difference between while loop and for loop, limitation of the while loop, syntax for the loops, list comprehension, functions and how to make use of it, importance of parentheses in a function

aniruddhaghosh
Автор

Summary 03 October 2020
Function
Iteration
Readability
Bugs in program
List compression
Return Keyword
Argument in function

SalmanKhan-kubr
Автор

In this class I have learnt:-
- basis of data science with some more basics of python
- list data type
- use of for loop
- many functions like append () in list to add element in the last
- basic introduction to function, how to define function, call by reference in function
- bug control

hitanshikhandelwal_cs-_
Автор

In this session, I learnt that,
1-About append function in list
2-About Business Rules or Business Logic
3-Python provides Readabiliy
4-About list comprehensions and inline
5-About parameter in functions
6-About parameterized functions
7-How to define and call function
8-* converts variable to tuple
9-About return keyword
10-Importance of () in a function

NILESHMATHURBLC
Автор

I learnt following things::
1.functions.
2.Basics of loops.
3.Some of iterations.
4.keywords like return.
5.Ended session with function call by reference.

swapnilkarande
Автор

Session was awesome in this session.
Iteration.
Loop statement were explained.
For loop while loop break statement.
How to use return.
Indentation.
Session was quiet good.

akashmore
Автор

In this session we learned about:-
->list creation and modifying it
->using of algorithms to solve it
->For loop
->While loop
->list comprehension
->Inline concept
->functions
->parametarized functions

bhargavvuyyuru
Автор

Session 12 summary:
-usage of for loops and while loops
-how to create functions
-how to create our own modules
-about list and list comprehensions
-about return statement


thank you vimal sir

gauravdeshmukh
Автор

- list comprehension
- function
- multiple arguments in function
- loops
- iteration
- parenthesis
- return statement/keyword
- bug in program
- readability

shivangisharma
Автор

Summary for the session:
>> list
>> loops
>> list compression
>> function
>> Return statement
>> Readability
>> Iteration

priyankapanore
Автор

we learnt the following things
- looping, function and indentation concept in python.
- List
- Uses of for and while loop.
- use of a return statement
- append() function is used in list
- learned about functions and their benefits.
What is bug in a program
call by reference
how to pass number of parameters using "*".
we write code according to our requirement and it should be flexible.

krishanudas
Автор

From this session I learnt about,
The concept of list of comprehensive functions,
Multiple parameter functions iteration and loops like for and while loop.
Use of parenthesis, how to use of return statement, the concept of call by reference, bugs in the program, arguments in the function and the readability .

ajitadam
Автор

I have learned from this session 12 about :
•list comprehension
•learned about different types of loops in python
•about while loop
•about function
•about iteration
•about return statement
•about how to use paranthesis()

MohdKamran-ngtd
Автор

In today's session
- we learnt about iteration
- we learnt about loops
- we learnt about functions
- we learnt about append()
- we learnt about bugs
- we learnt about list comprehension

Tanishqjain