Program to Check Given number is a Prime Number
If a natural number is greater than 1 and has no positive divisors other than 1 and the number itself,… Read More »Program to Check Given number is a Prime Number
If a natural number is greater than 1 and has no positive divisors other than 1 and the number itself,… Read More »Program to Check Given number is a Prime Number
To read username and password in asterisk **** way in python. Follow the below code snippet written in python. Enter… Read More »How to Read password in encoded way Python
Consider two variables a and b. Swapping the values of those two variables without using third variable is explained in… Read More »Swap Two Numbers Python
Adding two numbers in python without any user input: 7 Adding two numbers through user input. Enter x value:4 Enter… Read More »Add Two Numbers – Python
The basic program every developer starts with is the Hello world program. Below is the Hello world program written in… Read More »Hello world program in Python
To concatenate two or more lists in python you can use ‘+’ operator, extend method or through iterator. Below are… Read More »How to Concatenate two lists in python
Using sort() method By using sort method the original list gets modified. As you see below the list named numbers… Read More »Sorting a list in Python