Monty Python

May 18, 2010 at 7:55pm
I will not buy this C++ forum... it is scratched!

http://www.youtube.com/watch?v=G6D1YI-41ao

What are your favorite scenes from Monty Python's Flying Circus, Holy Grail, Meaning of Life, Life of Brian, or other productions?

-Albatross
Last edited on May 19, 2010 at 8:47pm
May 19, 2010 at 9:05am
The Knights of Ni from the Holy grail is a personal favorite.. Aswell as the part with the killer rabbit.. lawl
May 19, 2010 at 9:27am
closed account (z05DSL3A)
http://www.youtube.com/watch?v=uprjmoSMJ-o
or
http://www.youtube.com/watch?v=4vuW6tQ0218
or
...
May 19, 2010 at 4:04pm
I've seen the Holy Grail and the Life of Brian. Other than that I'm too young :)
May 19, 2010 at 8:43pm
"I shall welease...Wodewick!"

I should write a program that converts 'r's to 'w's.

EDIT: done.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <iostream>
#include <string>
#include <limits>
using namespace std;

int main()
{
    string str;
    getline(cin, str);
    for(int i = 0; i < str.length(); i++)
    {
        if(str[i] == 'r')
            str[i] = 'w';
        else if(str[i] == 'R')
            str[i] = 'W';
    }
    cout << str;
    cin.ignore(numeric_limits<streamsize>::max(), '\n');
}

Last edited on May 19, 2010 at 8:51pm
May 20, 2010 at 2:27am
I must be the only person in the world who finds Monty Python completely unfunny.
May 20, 2010 at 3:38am
Their newer stuff sucks *********** ************* ********, but their older productions weren't bad.

-Albatross
Last edited on May 20, 2010 at 3:44am
May 20, 2010 at 8:02am
I... I can't believe it... Someone doesn't like Monty Python?...

I.. I don't know what to say... *drops dead*
May 20, 2010 at 9:08pm
Disch wrote:
I must be the only person in the world who finds Monty Python completely unfunny.


It has its dry moments, but it's quite funny.
May 23, 2010 at 2:27am
"Bring out yer dead!"

John Cleese(who was in Holy Grail) had a show called Fawlty Towers that was friggin' hilarious. If you're a fan of that kind of humor, it's worth checking out at least once.
May 23, 2010 at 2:31am
If you guys want to see something John Cleese did that was actually funny, check out A Fish Called Wanda. (but really most of the humor comes from Kevin Kline)

Fierce Creatures was sort of like the "sequel" (more like a reforming of the cast to make another movie) and was also very funny, but not quite as good.
May 23, 2010 at 2:41am
Yeah, Wanda was pretty good. "Don't call me stupid!" lol
May 23, 2010 at 2:43am
Or that scene when he was in the car practicing for his apology.

"I'm so, so... .... ffffff*** yoooouu!"

That might be my favorite 5 second clip from any movie.
May 23, 2010 at 2:47am
lmao, *sigh* well, I gotta go see if I can find this movie anywhere tomorrow; I haven't seen it in years. Might see if I can find the Holy Grail while I'm at it. I need them both for my collection anyway. lol
May 23, 2010 at 5:32pm
I like the guy from The Meaning of Life who throws up so much he explodes.
May 24, 2010 at 8:14pm
The scene with Caesar and the joke names, "It's a joke name sir. You know like Bigus Dickus? I have a very good fwend in wome named Bigus Dickus! What's so funny about that"?

From the other I'd have to go with the three questions scene. "oh that's easy let me try. What is your favorite color? -- Red... err wait blue -- arrrrrrgggghhh (as being cast off of cliff for answering incorrectly)".
Topic archived. No new replies allowed.