Vikram Chiluka has Published 288 Articles

Python Program to Test if string contains element from list

Vikram Chiluka

Vikram Chiluka

Updated on 27-Jan-2023 12:28:22

854 Views

In this article, we will learn how to check if a string contains an element from a list in python. Methods Used Using Nested For Loops Using List Comprehension Using any() function Using the find() function Example Assume we have taken an input string and input list. ... Read More

Python program to Uppercase selective indices

Vikram Chiluka

Vikram Chiluka

Updated on 27-Jan-2023 12:22:26

1K+ Views

In this article, we will learn a python program to convert the string elements to uppercase for the given selective indices. Methods Used The following are the various methods to accomplish this task − Using For Loop and upper() function Using List Comprehension Using index() & join() functions ... Read More

Python Program to Test if any set element exists in List

Vikram Chiluka

Vikram Chiluka

Updated on 27-Jan-2023 12:19:16

2K+ Views

In this article, we will learn how to check if any set element exists in the list in python. Methods Used Using any() function Using Bitwise & operator Using Counter(), filter() and lambda functions Example Assume we have taken an input set and input list. We will now ... Read More

Python Program to Split a String by Custom Lengths

Vikram Chiluka

Vikram Chiluka

Updated on 27-Jan-2023 12:08:51

2K+ Views

In this article, we will learn how to split a string by custom lengths in python. Methods Used The following are the various methods to accomplish this task − Using for loop and slicing Using List Comprehension, join() and next() functions Example Assume we have taken an input ... Read More

Python Program to Sort A List Of Names By Last Name

Vikram Chiluka

Vikram Chiluka

Updated on 27-Jan-2023 12:05:17

1K+ Views

In this article, we will learn a python program to sort a list of names by last name. Methods Used Using lambda and sorted() functions Using lambda and sort() functions Example Assume we have taken an input list containing string elements. We will now sort the list elements ... Read More

Python Program to Replace all words except the given word

Vikram Chiluka

Vikram Chiluka

Updated on 27-Jan-2023 12:03:24

277 Views

In this article, we will learn how to replace all words except the given word in a string in python. Methods Used The following are the various methods to accomplish this task − Using For Loop, split() & join() Functions Using List Comprehension Example Assume we have ... Read More

Python Program to Remove numbers with repeating digits

Vikram Chiluka

Vikram Chiluka

Updated on 27-Jan-2023 12:02:20

660 Views

In this article, we will learn how to remove numbers with repeating digits in python. Methods Used The following are the various methods to accomplish this task − Using list comprehension and set() function Using re module Using the Counter() function Example Assume we have taken an input ... Read More

Python program to remove K length words in String

Vikram Chiluka

Vikram Chiluka

Updated on 27-Jan-2023 12:00:36

388 Views

In this article, we will learn a python program to remove K-length words in String. Methods Used The following are the various methods to accomplish this task − Using split(), join(), len() and list comprehension Using filter(), lambda(), split() and len() functions Using split(), join(), remove() and len() functions ... Read More

Python Program to Remove all digits before given Number

Vikram Chiluka

Vikram Chiluka

Updated on 27-Jan-2023 11:59:04

221 Views

In this article, we will learn how to remove all digits before a given number in python. Methods Used The following are the various methods to accomplish this task − Using List Comprehension, split(), enumerate() & index() Functions Using re module Using slicing, index() & replace() functions Example ... Read More

Python Program to Random uppercase in Strings

Vikram Chiluka

Vikram Chiluka

Updated on 27-Jan-2023 11:57:31

744 Views

In this article, we will learn how to convert characters to uppercase in Strings Randomly using python. Methods Used The following are the various methods to accomplish this task − Using join(), choice(), lower(), upper() functions. Using random.randInt() and random.sample() functions. Using map(), choice(), zip() functions Example Assume ... Read More

Previous 1 ... 6 7 8 9 10 ... 29 Next
Advertisements