filmov
tv
Write a Python Program to Check Whether a Given String is an 'Isogram' or Not

Показать описание
Hi Guys, Welcome to my channel.
In this video you will learn about how to Write a Python Program to Check Whether a Given String is an "Isogram" or Not
Python Scripts
======================
Python Functions Solved
==========================
Python Programs Solved
============================
Code
=============================
s = input("Enter a string : ").lower()
index = 0
while index != len(s):
if s[index] in s[index+1:]:
print("String is not an Isogram")
exit(0)
index += 1
print("String is an Isogram")
Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners
In this video you will learn about how to Write a Python Program to Check Whether a Given String is an "Isogram" or Not
Python Scripts
======================
Python Functions Solved
==========================
Python Programs Solved
============================
Code
=============================
s = input("Enter a string : ").lower()
index = 0
while index != len(s):
if s[index] in s[index+1:]:
print("String is not an Isogram")
exit(0)
index += 1
print("String is an Isogram")
Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners