Skip to content Skip to sidebar Skip to footer

Checking If String Only Contains Certain Letters In Python

i'm trying to write a program that completes the MU game https://en.wikipedia.org/wiki/MU_puzzle basically i'm stuck with ensuring that the user input contains ONLY M, U and I char

Solution 1:

ifall(cin"MIU"forcin string):

Checks to see if every character of the string is one of M, I, or U.

Note that this accepts an empty string, since every character of it is either an M, I, or a U, there just aren't any characters in "every character." If you require that the string actually contain text, try:

ifstringandall(c in"MIU"for c instring):

Solution 2:

If you're a fan of regex you can do this, to remove any characters that aren't m, u, or i

import re
starting = "jksahdjkamdhuiadhuiqsad"
fixedString = re.sub(r"[^mui]", "" , starting)

print(fixedString)
#output: muiui

Solution 3:

A simple program that achieve your goal with primitive structures:

valid = "IMU"
chaine = input ('enter a combination of letters among ' + valid + ' : ')

test=True
for caracter in chaine:
    if caracter not in valid:
        test = False

iftest :        
    print ('This is correct')    
else:    
    print('This is not valid')

Post a Comment for "Checking If String Only Contains Certain Letters In Python"