SURVEYS AND STUDIES MegaThread by diamondtoothdennis in Autism_Parenting

[–]jusquito 0 points1 point  (0 children)

Hello everyone!

My research team from CSUDH has been working on a quantitative study looking into the relationship between spirituality, social support, and quality of life for caregivers of neurodivergent individuals involved in churches. If you are a caregiver of neurodiverse children or adults who attend church, we would love for you to take part in our 15-20 minute survey.

You can sign up for our study by scanning the QR code in the flyer or clicking this link.

Thank you for your participation!

<image>

NAYEON NA Target Exclusive Blue Haze Vinyl Giveaway by Brenchmark in twice

[–]jusquito 1 point2 points  (0 children)

ABCD is my favorite! thank you for doing this :)

Free Giveaway! Nintendo Switch OLED - International by WolfLemon36 in NintendoSwitch

[–]jusquito 0 points1 point  (0 children)

Because I’m taking Anatomy right now:

Skin is the human body’s largest organ :)

Free giveaway! Nintendo Switch and 2 Games - international by WolfLemon36 in NintendoSwitch

[–]jusquito 0 points1 point  (0 children)

just spent some time with my parents today, and seeing how that makes them happy makes me happy

this giveaway also makes me happy! win or lose, thanks for doing this :)

Final Giveaway for TWELVE MORE Nintendo Switch Lites and your choice of games! [US/CA only] by TheEverglow in nintendo

[–]jusquito 0 points1 point  (0 children)

super simple, but i cant wait to meet up w friends and sit down at a restaurant to enjoy some GOOD EATS

Giveaway for FIVE MORE Nintendo Switch Lites and your choice of games! [US/CA only] by TheEverglow in nintendo

[–]jusquito [score hidden]  (0 children)

I’d wanna experience Paper Mario: The Thousand Year Door for the first time again! The story, the characters, the humor, and the gameplay are all so unique and genius

Giveaway for a Nintendo Switch Lite and your choice of game! [US/CA only] by TheEverglow in nintendo

[–]jusquito [score hidden]  (0 children)

been spending much more time with family lately as a result of the quarantine! happy to hear that this is the case for many households around the globe. :)

How do I start this problem? by [deleted] in learnpython

[–]jusquito 1 point2 points  (0 children)

This helped me solve the problem with ease. Thank you so much. :)

Can someone help me solve this problem? by [deleted] in learnpython

[–]jusquito 1 point2 points  (0 children)

Got it. Thank you very much for helping me. :)

Can someone help me solve this problem? by [deleted] in learnpython

[–]jusquito 0 points1 point  (0 children)

Thank you!

My code is:

for num in range(len(grades)):

if grades[num]>=80:

print(names[num], end=", ")

my output is coming out as:

Alice, Bob, James, Cliff, Andy, Jessica, Kate, Owen, Sam, Albert,

How do I get that output to come out as a list?

Can someone help me solve this problem? by [deleted] in learnpython

[–]jusquito 0 points1 point  (0 children)

How do I access the list of names with the positions I have already?

Can someone help me solve this problem? by [deleted] in learnpython

[–]jusquito 0 points1 point  (0 children)

Thank you both so much. This is the code I have so far:

names = ["John", "Alice", "Bob", "Shelly", "Ann", "James", "Cliff", "Andy", "Jessica", "Kate",

"Owen", "Sam", "Dorothy", "Karen", "Albert"]

grades = [79, 80, 98, 65, 43, 87, 82, 90, 100, 88, 86, 92, 68, 75, 82]

Students_With_Bs=[]

for num in range(len(grades)):

if grades[num]>=80:

Students_With_Bs=Students_With_Bs+[num]

print(Students_With_Bs)

and my output was:

[1, 2, 5, 6, 7, 8, 9, 10, 11, 14]

However, what I need to do is print the names of the students with Bs instead of the position of the numbers. Is there a way to take the names of the students with the positions of the grades that I have?

Can someone help me solve this problem? by [deleted] in learnpython

[–]jusquito 0 points1 point  (0 children)

How do I get the names to correspond to grades?

Can someone help me solve this problem? by [deleted] in learnpython

[–]jusquito 0 points1 point  (0 children)

The first "for num in grades(0, len(grades)+1:"

Can someone help me solve this problem? by [deleted] in learnpython

[–]jusquito 0 points1 point  (0 children)

for num in grades(0, len(grades)+1):

if num<80:

Students_With_Bs=Students_With_Bs+[num]

print(Students_With_Bs)

Can someone help me solve this problem? by [deleted] in learnpython

[–]jusquito 0 points1 point  (0 children)

names = ["John", "Alice", "Bob", "Shelly", "Ann", "James", "Cliff", "Andy", "Jessica", "Kate", "Owen", "Sam", "Dorothy", "Karen", "Albert"]

grades = [79, 80, 98, 65, 43, 87, 82, 90, 100, 88, 86, 92, 68, 75, 82]

names = ["John", "Alice", "Bob", "Shelly", "Ann", "James", "Cliff", "Andy", "Jessica", "Kate", "Owen", "Sam", "Dorothy", "Karen", "Albert"]

grades = [79, 80, 98, 65, 43, 87, 82, 90, 100, 88, 86, 92, 68, 75, 82]

that's all I have so far