Monty Python

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
The Knights of Ni from the Holy grail is a personal favorite.. Aswell as the part with the killer rabbit.. lawl
closed account (z05DSL3A)
http://www.youtube.com/watch?v=uprjmoSMJ-o
or
http://www.youtube.com/watch?v=4vuW6tQ0218
or
...
I've seen the Holy Grail and the Life of Brian. Other than that I'm too young :)
"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
I must be the only person in the world who finds Monty Python completely unfunny.
Their newer stuff sucks *********** ************* ********, but their older productions weren't bad.

-Albatross
Last edited on
I... I can't believe it... Someone doesn't like Monty Python?...

I.. I don't know what to say... *drops dead*
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.
"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.
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.
Yeah, Wanda was pretty good. "Don't call me stupid!" lol
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.
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
I like the guy from The Meaning of Life who throws up so much he explodes.
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.