In the last session, we discussed python loops. I hope you all understood them well. Now, we're learning about unconditional statements and string operations.
Let’s start,
Unconditional Statements
Python has various types of loop functions like for and while. These loops are automatic and efficiently repeats the tasks. But sometimes, where you want to exit the loop completely, skip an iteration or ignore that condition. These can be done by unstructured loop control statements.
Break Statements
The break statement terminates the loop.
![]()
Break statements using letters
Break statements using numbers
Continue Statements
The loop to skip the remainder of its body and immediately retest its condition prior to reiterate.
![]()
Continue statements using letters
Continue statements using the range
Pass Statements
- Pass statement is a null operation.
- Nothing happens when it executes.
Pass statements using letters
Pass statements using a list
STRING OPERATIONS
String - sequence of characters
![]()
Different String printing options
String Concatenation
String function using the format
Data Types overview
![]()
type – Identifying
Different Assigning methods
Random Number generator 1 - 10
Sorted Command
Now, we have learned unconditional statements and string operations. I have provided multiple examples and various methods. In the next article, we will discuss the def function.