Avatar

DeHuq2

DeHuq2@lemmygrad.ml
Joined
33 posts • 97 comments

Professional lurker, part-time poster

Direct message

Защищающаяся is kinda a meme word so don’t be intimidated from learning russian, there aren’t a lot of words like that. You can also leave the first ‘v’ in здравствуйте silent.

permalink
report
parent
reply

Me when there’s a spot on my store bought apple:

Me when i find a snail-eaten raspberry bush near some shitty stream:

And how did your day go?

permalink
report
reply

Try to repeat these letters from youtube videos.

‘c’ is just an ‘s’, ‘ч’ is ‘ch’, ‘ц’ is a bit trickier than ‘ч’ because you might be unfamiliar with pronouncing ‘ts’ as a single sound and not just as ‘t’ and ‘s’. ‘ш/щ’ are the hardest consonants to learn because they sound very similar to one another and are essentially just hard/soft version of the same letter that was split into two separate ones, its best to hold off figuring them out until you get palatalization down.

Try to break long words down to syllables and pronounce them separately. Endings often make up 30% of the word and are pretty repetitive, so if you get those down pronouncing the whole word will be easy. Most scary long words are just two words in a trench coat, you just have to recognize them for what they are.

I’ve been learning chinese a little as a third language, i’m not far in it at all but it has been fun seeing random chinese comments and vaguely getting the idea of what they were talking about.

Also consider this your exam: pronounce защищающаяся (zashchishchayushchayasya) correctly. Unfortunately it is just one word without a trench coat.

permalink
report
reply

Been gone for a while, hows lemmygrad? It looks like less people are leaving comments since last time i was here.

permalink
report
reply

Fixed it now!

def Fmmin():
    for n in range(2, number):
        if number % n == 0:
            return n
        if n == number - 1 and number - 1 % n != 0:
            return 0
def Fmmax():
    for n in range(number-1, 1, -1):
        if number % n == 0:
            return n
        if n == 2 and number % n != 0:
            return 0
permalink
report
parent
reply

I figured it out! I just needed to use break.

num = []
Ms = []
def Fmmin(va):
    while va == 0:
        for n in range(2, number):
            if number % n == 0:
                va = n
                break
            if n == number - 1 and number - 1 % n != 0:
                va = '0'
    return va
def Fmmax(va):
    while va == 0:
        for n in range(number-1, 1, -1):
            if number % n == 0:
                va = n
                break
            if n == 2 and number % n != 0:
                va = '0'
    return va

for f in range(1,10000000):
    number = 452021 + f
    mmin = 0
    mmax = 0
    mmin = Fmmin(mmin)
    mmax = Fmmax(mmax)
    if int(mmax) > 0 and int(mmin) > 0:
        M = mmax + mmin
        if M % 7 == 3:
            num.append(number)
            Ms.append(M)
    if len(num) >= 5:
        break
print(Ms)
print(num)
permalink
report
parent
reply
num = []
Ms = []
while len(num) <= 5:
    for f in range(1,1000000):
        a = 452021 + f
        mmin = 0
        mmax = 0
        while mmin == 0:
            for n in range(2,a-1):
                if a % n == 0:
                    mmin = n
                if n == a-1 and a % n != 0:
                    mmin = '0'
        while mmax == 0:
            for n in range(a-1,2,-1):
                if a % n == 0:
                    mmax = n
                if n == 2 and a % n !=0:
                    mmax = '0'
        M = int(mmax) + int(mmin)
        if M % 7 == 3:
            num.append(a)
            Ms.append(M)
print(Ms)
print(num)
permalink
report
parent
reply

What did I do wrong? I could look up proper solution to this exercise but I would still like to know what exactly is off. I feel like its something super obvious and stupid.

permalink
report
reply

In a move truly distinguishing it as a progressive western country, Ukraine joins the international semen extraction brigade. Israel is yet to share its advanced cattle prod technologies.

Zelensky signs off law on storing reproductive cells of Ukraine’s military in cryobanks

permalink
report
reply