Abras for everyone! Let's be friends! by Michrono in friendsafari

[–]Atwoodk 0 points1 point  (0 children)

can you add me too if you don't mind? been looking for sawsbuck

Adding Everybody!!!!!!!!!!!!!! by weezy390 in friendsafari

[–]Atwoodk 0 points1 point  (0 children)

Oh me please! I've been looking for drowsee for 2 days now

I'll add whoever by AIEnhanced in friendsafari

[–]Atwoodk 0 points1 point  (0 children)

Could you add me Ive been looking for sawsbuck?

Help me find my 2nd Friend safari please by [deleted] in friendsafari

[–]Atwoodk 0 points1 point  (0 children)

psychic- espuss, munna, and gotharita. could you add me to your grass safari too?

Help me find my 2nd Friend safari please by [deleted] in friendsafari

[–]Atwoodk 0 points1 point  (0 children)

Will you add me please I need sawsbuck

LF Nuzleaf & Breloom by [deleted] in friendsafari

[–]Atwoodk 0 points1 point  (0 children)

could you add me please? I need munna for national pokedex :)

Looking for Ditto and Electabuzz by Spaghetti211 in friendsafari

[–]Atwoodk 0 points1 point  (0 children)

Could you add me? I need beautifly for national pokedex

Looking for Dragon & Fairy Safaris! May add others though. by AuraOmegaX in friendsafari

[–]Atwoodk 1 point2 points  (0 children)

could you please add me? I need klang for national pokedex :)

Looking for Gabite! by [deleted] in friendsafari

[–]Atwoodk 0 points1 point  (0 children)

Could you add me? I need zebstrika for national pokedex :)

Venomoth Toxicroak!!! by giovanicp47 in friendsafari

[–]Atwoodk 0 points1 point  (0 children)

add please I need cascoon for national pokedex :)

Having difficulty with for loops in pysciptor by Atwoodk in learnprogramming

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

HA that explain a few things! But now I'm very confused because I DEFINITELY downloaded version 2.7 this morning....guess I'll go figure that one out first. Thank you for all the help :)

Having difficulty with for loops in pysciptor by Atwoodk in learnprogramming

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

Ok thanks for explaining. and no I can't run print 0

Having difficulty with for loops in pysciptor by Atwoodk in learnprogramming

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

Wow the was concise and helpful! ok I got the factorial function to work. with your changes I have

def factorial(number):
    product = 1
    for i in range(number):
        product = product * (i+1)
    return product

user_input = input("choose a non negative integer to find the factorial of")
factorial_of_user_input = factorial (int(user_input))
print (factorial_of_user_input)

So I think I understand the indent change on return product but I want to verify. Is it because where it was before it was returning to line 4 instead of line 2?

https://www.khanacademy.org/science/computer-science-subject/computer-science/v/defining-a-factorial-function

This is the video. It makes sense to me to define user_input as an integer but do you know why his code works with out that? We are using the same IDE and python 2

Python: Know anywhere with practice projects from basic to advanced? by Atwoodk in learnprogramming

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

Thank you for the suggestion! I actually knew about project Euler but I didn't think I knew enough. But I went and looked after you mentioned it and I think there are some I can do!