Write a Python Program to Find Common Characters Present in Two Words

preview_player
Показать описание
Hello Programmers, Welcome to my channel.

In this video you will learn about how to Write a Python Program to Find Common Characters Present in Two Words

Python Scripts
======================

Python Functions Solved
==========================

Python Programs Solved
============================

Code
=============================
word1 = input("Enter First Word : ")
word2 = input("Enter Second Word : ")

print("The common characters present in two words are ...")

for letter in word1:
if letter in word2:
print(letter, end=" ")

Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners
Рекомендации по теме