Friday, June 13, 2008

Moviies like anaconda-python-or big crocs-aligators-ect...

wanna kno if I should feed her again or what

Out of this list- which is the best in your opinion?
1. The Sopranos
2. Six Feet Under
3. Seinfeld
4. Futurama
5. South Park
6. Oz
7. Arrested Development
8. Twin Peaks
9. Friends
10. The X-Files
11. My So-Called Life
12. Beavis and Butt-Head
13. Monty Python s Flying Circus
14. Deadwood
15. The Simpsons

Note: People like me take time and effort to make lists like these- so please try your best to STICK WITH THE LIST. You can also provide other which are out of the list- as long as some of your choices are FROM THE LIST. Thanks!

When making a forloop...a whole bunch of numbers in the range will be returned.
How do I make the only greatest number (last number) to print...I don t want the other numbers.
This is a program used to find the GCF of two numbers...so if first number is "a"- we can find the factors with a forloop.

for i in range (1- a+1):
>>>if a%1 == 0:
>>>>>>if b%i == 0:
>>>>>>>>>#Here are the factors...I only want the greatest factor
Sorry...the program is wrong...here it is: TO FIND GCF.

a=raw_input ("First number: ")
b=raw_input ("Second number: ")
for i in range (1- a+1):
>>>if a%i == 0:
>>>>>>if b%i == 0:
>>>>>>>>>#Here- "i" will equal to factors. I only want greatest factor.

No comments: