How Can I Concatenate Two Lists In Python?

Now Here we are going to discuss more How can I concatenate two lists in Python? There are two ways to do so first can be we can simply add both the list using + (Plus Operator) where we can simply add them as two strings, and we can also use the inbuild function extend … Read more

What Is The Difference Between re.search() and re.match() Functions? In Python

In this Tutorial, we are going to discuss the difference between re.search() and re.match() functions which are being used to get the matched String from an existing string, Either from Starting or in between the string. Ways To Match Substring With Main Strings There are some ways to check the matches of substrings with main … Read more

Python Program to Print Table – Basic Python Program

Python program to print multiplication table of a number given by user. Python Program to Print Table – Basic Python Program num=int(input(“Enter a number to print it’s multiplication table:”)) temp=1 i=1 while i<=10: temp=num*i print(f”{num} * {i} = {temp}”) i+=1     Tags: Print table, python program to print tables

%d bloggers like this: