
Students can be get the idea about course and it's content.
Python programming language it's feature and it's uses in various industries.
By watching this video students can be installed python interpreter on their, desktop or laptop.
By watching this video students will understand and install PyCharm set up on their Desktop or laptop.
Students will understand Different Control Flow Structure in Python Programming Language.
if Statement in Python is used for decision-making operations. It contains a body of code which runs only when the condition given in the if statement is true.
if Statement in Python is used for decision-making operations. It contains a body of code which runs only when the condition given in the if statement is true. If the condition is false, then the optional else statement runs which contains some code for the else condition.
"elif" means actually else if. if you are using "elif" condition, you are telling the program to print out the third condition or if possible, when the other condition goes incorrect or wrong.
This is condition when an if…elif…else statement will occur in inside of another if…elif…else statement. This is called nesting in computer programming language. Such kind of any number of statements can be nested inside one another.
As long as condition is True in while loop, we can execute some set of user defined statements repeatedly.
Generally for Loop is used to iterate the sequence (datatypes like list, tuple, string, set etc..)
Loop continues until it is not reached up to the last item in the sequence.
This range() is in built function in python programming language. Generally we can apply it on for loop or some time in while loop also. It is used when a user needs to perform an action for a specific number of times and it is used to generate a sequence of number.
A Loop inside another loop is called as Nested Loop in Python. We can create nested looping statements using both type(while loop and for loop) of looping statements. In generally The "inner loop" will be executed one time for each iteration of the "outer loop".
The break statement discontinue the loop containing it. After that program flows transfer to the statement immediately after the body of the loop. If the break statement is inside a nested loop (loop inside another loop), the break statement will terminate the innermost loop
When continue statement appear in program it returns the control to the beginning of the while loop. It rejects all the remaining statements in the current iteration of the loop and moves the control back to the top of the loop. In both while and for loops , the continue statement can be used.
Pass statement is actually a null operation. It will not print any thing, Nothing is happens when it executes. The pass statement in Python is used when a statement is required syntactically but you do not want any command or code to execute.
Python is the fastest growing language in terms of developers, libraries and application that it can be useful. It could be Machine Learning, Artificial Intelligence, Web Development, anything that you can think, Python has always the best choice for programmer.
python is general purpose, high level language with easy semantics. In python indentation has used instead of curly braces to basically describe the block of code. Initially Python was not so popular as it was slower than other programming language but as rise of Artificial Intelligence and Machine Learning Python become lot of popular now a days.
This course is intended for learners, who want to know details about the Python Decision making process.
This course will very useful if you are eager to get knowledge about how any programming language can be implements the applications where various kind of selection or branching decisions are required to be taken.
In this course you will be learn concepts like Sequential Control Structure, Decision Control Structure and Repetitive Control Flow.
In this course learner not only be able to define the various concept like Selection Statements (if Statement, if--else Statement, if---elif---else Statement), Looping control statements (while loop, for loop) and Looping Control Statements (break Statements, continue Statements and pass Statement) but also they can implements these concept in real life applications using Python programming.
I am wishing you a very happy learning. Best of Luck!!!!!