Presenting stimuli on two screens

Hey, I know its been a while since you posted this, but I’m trying now to implement 2 monitors into my experiment that show different stimuli, and I’m encountering some problems due to me not fully understanding the syntax yet (I’m quite new to Python, I do understand the basics). I’m working from Builder to Code View.
Something that I dont fully understand is, whether I have to set everything up for two screens or not, so duplicate stimuli that are supposed to show up on both screens with “win1” and “win2”?
E.g. for the introduction, with one screen it would look like this:

Introduction = visual.TextStim(win=win, name='Introduction',
    text='Hello World!',
    font='Arial',
    pos=(0, 0), height=0.055, wrapWidth=None, ori=0, 
    color='white', colorSpace='rgb', opacity=1, 
    languageStyle='LTR',
    depth=0.0); 

If I want both screens to show the same thing, can I leave it then as “win=win”? I don’t fully understand, why it doesnt just say “win”. Or do I have to get up something like “Introduction1” and “Introduction2” to show it on two screens? Same for Stimuli. There are some that I want to show on both screens, but some that should be different (e.g. same pics, but different text).

Thank you very much!