Posted in allcategorites programs in python python simple programs python-short-tutorial

Python | Print Namaste using lambda

Output: Namaste

Continue Reading
Posted in allcategorites

Python | Check type of a NumPy Array

Output: <class ‘numpy.ndarray’>

Continue Reading
Posted in allcategorites programs in python python simple programs python-short-tutorial

Iterate over a string in Python

Output for all methods: C o p y A s s i g n m e n t

Continue Reading
Posted in allcategorites

Python | upper() and lower() methods | Convert a string to uppercase or lowercase letters

Output: copyassignment COPYASSIGNMENT

Continue Reading
Posted in allcategorites programs in python python simple programs python-short-tutorial

Python | join() | Join list of strings

Output: str1 str2 str3 str1 and str2 and str3

Continue Reading
Posted in allcategorites programs in python python simple programs python-short-tutorial

Python | isalnum() method | check if a string consists only of alphabetical characters or numerical digits

Output: True False

Continue Reading
Posted in allcategorites programs in python python simple programs python-short-tutorial

Python | isupper() and islower() methods to check if a string is in all uppercase or lowercase letters

Output: True False True False

Continue Reading
Posted in allcategorites programs in python python simple programs python-short-tutorial

Python | count substring in a String | count() method

Output: 2 2 1

Continue Reading
Posted in allcategorites programs in python python simple programs python-short-tutorial

Python | enumerate() on String | Get index and element

Output: <–Index–> VS <–Element–> 0 a 1 S 2 t 3 r 4 i 5 n 6 g

Continue Reading
Posted in allcategorites programs in python python simple programs python-short-tutorial

Python | Convert a String to list using list() method

Output: [‘a’, ‘S’, ‘t’, ‘r’, ‘i’, ‘n’, ‘g’]

Continue Reading