1 2

Contact us

To report abuse please send a detailed body to blog.noreply.codexmajor@gmail.com
Our moderators will get back to you as soon as possible.
Thank you for using my blog!

Solve for digital root

def droot(n):
    val=0
    while n > 9:
        for i in str(n):
            print(f'{int(i)}+{val}=?')
            val=int(i)+val
        n=val
        val=0
        print(f'{n}\n')
    return n

print(droot(132189))

# Why do you want to delete me?


Detecting pangrams in python

def is_pangram(s):
    s = s.lower()
    chars = "abcdefghijklmnopqrstuvwxyz"
    count=0
    for char in chars:
        if char in s:
            count+=1
        else:
            pass
    if count==26:
        return True
    else:
        return False
print(is_pangram("Cwm fjord bank glyphs vext quiz"))


1 2