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

preview_player
Показать описание
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
Рекомендации по теме
visit shbcf.ru