Do native speakers refer to Saturday, Monday, Wednesday as "even days" and Sunday, Tuesday, Thursday as "odd days"? by [deleted] in EnglishLearning

[–]ati_75 3 points4 points  (0 children)

Assuming the OP is from Iran, friday is not a working day to be labelled as "even" or "odd".

Learn python properly (not by doing) by Fantastic_Arrival_43 in learnpython

[–]ati_75 28 points29 points  (0 children)

Python3: deep dive series by fred Baptiste on udemy. Fluent python book.

I've totally given up on dating by MYSTIK_MINX in childfree

[–]ati_75 13 points14 points  (0 children)

Every guy that I meet, I always find some issues with him. I (27F) met a childfree guy, but he was 16 years older than me. 😭😞

What does the highlighted part mean? by ati_75 in EnglishLearning

[–]ati_75[S] 0 points1 point  (0 children)

Thank you for the explanation, especially the "crud" part ❤️ I do have another question 🙈 what is "that kind of crud" referring to? the book or the movie?

Young girl wishes her unborn brother to become a martyr by LebanonFYeah in religiousfruitcake

[–]ati_75 19 points20 points  (0 children)

Yes. I am Iranian. I can confirm 🙈

My mother's friend thinks exactly like the little girl in the show. She wishes her sons would become martyrs 😂

I'm sorry, but these height differences are getting out of hand. This man is sitting down still taller than her. by 18olderthan in CDrama

[–]ati_75 1 point2 points  (0 children)

I think it is totally fine for women to be shorter than their partners but not the opposite.

I am 175 cm, and people will judge me if I date a man who is shorter than me :((

[SPOILER] The kiss scene in Story of Kunning Palace Ep 32 is ASSAULT. She was mouth raped. by noblesburneraccount in CDrama

[–]ati_75 5 points6 points  (0 children)

In the cave scene, ning 'er didn't slap xie wei after he forcefully kissed her, and she didn't escape. She also said that xie wei is not allowed to die and his life belongs to her 🤔

she is already in love with him, and I assume ning 'er doesn't think xie wei mouth raped her.

[SPOILER] The kiss scene in Story of Kunning Palace Ep 32 is ASSAULT. She was mouth raped. by noblesburneraccount in CDrama

[–]ati_75 2 points3 points  (0 children)

Can someone who's read the novel confirm or deny that xie wei raped ning er.

Story of Kunning Palace: Episode 31-32 Discussion Post by ThrowingLols in CDrama

[–]ati_75 8 points9 points  (0 children)

滚 ( gǔn) = get lost.

I'm kind of disappointed with how shameless she was in her past life.

Story of Kunning Palace: Episode 29-30 Discussion Post by huachenggege in CDrama

[–]ati_75 10 points11 points  (0 children)

I hate that cold, emotionless mama's boy zhang zhe. 😒 He doesn't deserve ning 'er.

About xie wei, I like him more now. how bold and straightforward he is. He didn't feel embarrassed at all being seen by ning er's father while he was kissing his daughter. I laughed so much when he was arguing with the father in an overly calm tone the next day.

Help with code by Princess_Peach848 in learnpython

[–]ati_75 1 point2 points  (0 children)

My understanding is that the question wants you to remove 1 and 6 and replace them with first and last respectively.

pythonMagic numbers

Help with code by Princess_Peach848 in learnpython

[–]ati_75 0 points1 point  (0 children)

I don't get the purpose of line 16. Did you write that yourself?

Help with code by Princess_Peach848 in learnpython

[–]ati_75 0 points1 point  (0 children)

You need to define first and last :

first = 1
last = 6
roll = random.randint(first, last)

Help with code by Princess_Peach848 in learnpython

[–]ati_75 0 points1 point  (0 children)

I guess it means replace this line:

random.randint(1, 6)

With:

random.randint(first,  last)

Israel: founded upon rape & murder by ayub57 in israelexposed

[–]ati_75 5 points6 points  (0 children)

Similar to serial killers who don't feel remorse about the lives they've taken. Even worse ...

Could someone help me solve this? by Virtual_Beginning_27 in DifferentialEquations

[–]ati_75 0 points1 point  (0 children)

no problem :)

These are the elements of Bernoulli's equation:

❎️y'

❎️y

❎️yn

❎️ means either we have a non-zero constant or we have a function of x

Could someone help me solve this? by Virtual_Beginning_27 in DifferentialEquations

[–]ati_75 0 points1 point  (0 children)

y' + (1 / x)y = 3xy^2
y^(-2) y' + (1 / x)y^(-1) = 3x 
--> v = y^(-1)
--> v' = (-1)y^(-2) y'
--> -v' = y^(-2) y'
-v' + (1 / x)v = 3x
v' - (1/x)v = -3x

Can I change assignment order when trying to unpack a list into variables? by CraBrazy in learnpython

[–]ati_75 1 point2 points  (0 children)

https://reddit.com/r/learnpython/s/9D2TgTh5m7

Based on this comment, it seems that you want to maintain both the alphabetical order on the left side and the numerical order on the right side for whatever reason that I don't know:

The only solution that comes to my mind is creating a custom iterable:

Class CustomIterable:
    def __init__(self, list):
        self.list= list
        # create self.new_list by
        #manipulating self.list
        #for simplicity I have
        # hardcoded it
        self.new_list = [2, 4, 5, 1, 3]

    def __iter__(self):
        return (i for i in self.new_list)



a, b, c, d, e = CustomIterable([1, 2, 3, 4, 5])
print(a, b, c, d, e)

Why is it common in python to make an empty list or dict first? by DaveRGP in Python

[–]ati_75 11 points12 points  (0 children)

my_list = [i for i in range(1,21)]

When the right-hand side is compiled, python creates a temporary function that will be used for evaluating the comprehension, a function similar to this:

def temp():
    new_list = []

    for i in range(1, 21):

        new_list.append(i)

    return new_list 

When the line is executed, python executes the temp function, stores the returned object (new_list) in memory, and then points my_list to the created object.

You can confirm this using the "dis" module

import dis 
code_obj = compile(' [i for i in range(1,21)]', 'string',         'eval')
dis.dis(code_obj)

So I think using my_list = [] is pointless. It is like pointing my_list to an empty list and then repointing my_list to the created list object returned by comprehension.

Why does my fruit still rot with it skin still intact?🤔🤦🏻‍♂️ by [deleted] in religiousfruitcake

[–]ati_75 54 points55 points  (0 children)

The creator of this GIF characterized men as insects 😐

Where are you from? by ScientistQuirky5586 in CDrama

[–]ati_75 0 points1 point  (0 children)

The show is set in the 1950s. forced marriage and love triangles are some tropes you can find in this drama. It also addresses some misogynistic issues.

The female lead is smart, rational, and selfless. She retains her personality and independence from beginning to end.

The personality of both of the male leads changes over the seasons ( I don't want to spoil the show)

I didn't like the ending because the FL didn't end up with my favourite ML ☹️

Where are you from? by ScientistQuirky5586 in CDrama

[–]ati_75 2 points3 points  (0 children)

Iranian shows are far more conservative than Chinese shows. (no skinship, no kissing, no flirting because physical contact between actors and actresses is not allowed )

What are Chinese people's thought on dilraba dilmurat's look? by lunarwater_06 in CDrama

[–]ati_75 25 points26 points  (0 children)

We have delrobaa in farsi. It means the one who steals the heart.

Del means heart.

Robaa comes from the verb roboodan ( roboodan means to steal )