Re: Read file properties of video files in C++ Programming Software Development by rproffitt … like the man who was turned into a newt in Monty Python who said "I got better", such are… Monty Python Information Community Center Geeks' Lounge by DavidB … fans here who can help me. I recall seeing a Monty Python skit in which there was blood squirting all over… made me laugh my head off). Anyhow, I noticed some Monty Python DVDs available, but they are in plastic-wrapped cases… Re: Monty Python Information Community Center Geeks' Lounge by DMR … fans here who can help me. I recall seeing a Monty Python skit in which there was blood squirting all over… filmmaker Sam Peckinpah. In my version of "The Complete Monty Python's Flying Circus" DVD collection, it's episode… Monty Hall Problem Programming Software Development by smoore … Structures Class today somehow we ended up talking about the Monty Hall Problem for a little while. Anyways I got bored… Monty Hall - Three Door Problem (Simulation) Programming Software Development by Graphix Hello everyone, I stumbled upon a video about the monty hall problem, which I found very well explained, and a … Re: Monty Hall - Three Door Problem (Simulation) Programming Software Development by WaltP … correct door, and one door is randomly chosen. In the *Monty Hall Problem*, the moment a door is chosen, the *swich… New program: Monty Python Madlibs! Programming Software Development by chris99 …; % (verb1, noun1) print print "THIS IS THE END OF MONTY PYTHON AD LIBS. GOOD DAY!"[/CODE] This just resuts… The Monty Python guide to social networking Digital Media Digital Marketing by happygeek … hear about Ning, the more I keep going back to Monty Python and the Knights that say Ni sketch. It’s… Please Help! Working on a Monty Hall program...three door Programming Software Development by rollingapes I have to create a simulation to repeatedly play the Monty Hall game. I've created a class. This is what … Re: Monty Python Information Community Center Geeks' Lounge by jwenting The first two you mention are standalone full length movies. Exceedingly good movies that should really be in your collection. The third sounds like a compilation of fragments from the TV shows. If the bit you mentioned is on any of the three, it will be on that one. Re: Monty Python Information Community Center Geeks' Lounge by WaltP [QUOTE=jwenting;400598]The third sounds like a compilation of fragments from the TV shows. If the bit you mentioned is on any of the three, it will be on that one.[/QUOTE] It is a compilation of skits. It was their first movie but I'm not sure if they were TV bits or not. I don't remember seeing that skit in the movie, though. Re: Monty Python Information Community Center Geeks' Lounge by jwenting In the frozen land of Nador they were forced to eat Robin's minstrels, and there was much rejoicing. Re: Monty Python Information Community Center Geeks' Lounge by lasher511 [URL]http://youtube.com/watch?v=MYMVyY4naXs[/URL] here is a link to the skit you were talking about. Re: Monty Python Information Community Center Geeks' Lounge by DavidB Thank-you, DMR, for the excellent information. I don't know if I want the complete set just yet, but I now have a skit name. Thanks lasher511 for the video link. David Re: Monty Python Information Community Center Geeks' Lounge by lasher511 No problem Re: Monty Hall Problem Programming Software Development by VernonDozier You're getting the right answers and the logic seems OK. If you're looking for a critique of the code, I'd use more descriptive variable names and add comments so people can follow the logic more easily. In particular, you have a variable that you call other and initialize to 22, which is a value that will be illegal. I'd have it be -999999 or … Re: Monty Hall Problem Programming Software Development by JamesCherrill Like Vernon says, but also you can make a "bogus" value totally clear at zero overhead by declaring it as static final: public static final int BOGUS = -999999; then: var = BOGUS; if (var == BOGUS) { ... etc Re: Monty Hall Problem Programming Software Development by BestJewSinceJC Von Savant problem? I might have spelled her name wrong. I don't remember the reasoning and this problem is actually tricky, but I think I remember the answer: yes you should switch. My guess at the reasoning would be that after the host showing the one door, you now have a 50% chance of choosing the right one, which is up from your previous 33% … Re: Monty Hall Problem Programming Software Development by VernonDozier [QUOTE=BestJewSinceJC;894350]Von Savant problem? I might have spelled her name wrong. I don't remember the reasoning and this problem is actually tricky, but I think I remember the answer: yes you should switch. My guess at the reasoning would be that after the host showing the one door, you now have a 50% chance of choosing the right one, which is… Re: Monty Hall Problem Programming Software Development by smoore My take on the problem was that the host MUST show you an empty door after you make your first choice EVERY time reguardless of if you picked correctly the first time. This assumes that the host is not trying to make you lose. If you have these assumptions then you can difinitivly answer saying that you should switch everytime because: - the… Re: Monty Hall Problem Programming Software Development by yilmazhuseyin I saw this problem in a movie (I think its name was 21) and I never thought about it. After I saw it here this morning I started to think about it. I had worked on it for 12 hours and I finally figured it out half an hour ago in the shower. thank you for posting it here. I think I will try to write the program myself. If I write it I'll post the … Re: Hi everyone, I'm Monty Community Center Say Hello! by Dani Hi Monty, and welcome to DaniWeb!! I started DaniWeb as a hobby … Re: New program: Monty Python Madlibs! Programming Software Development by vegaseat Looks like you are getting familiar with formatted strings and string input, great! Could be quite funny depending on what you put in! Re: New program: Monty Python Madlibs! Programming Software Development by chris99 Thanks. My first program is going down a treat I see! Re: New program: Monty Python Madlibs! Programming Software Development by bumsfeld Wonder why you did that: [code]noun1 = noun verb1 = verb adjective1 = adjective moan = sound_disgust [/code] You had perfectly good variable names already. Re: New program: Monty Python Madlibs! Programming Software Development by chris99 Well, I had a slight problem with the code, that was a troubleshooting method that didn't work. I've been meaning to get rid of that... Re: The Monty Python guide to social networking Digital Media Digital Marketing by jay.smith open this link http://linuxera.com/content/view/222/2/ jay Re: Please Help! Working on a Monty Hall program...three door Programming Software Development by TrustyTony import sys import random as r from graphics import * from Button import * class ThreeDoor: def __init__ (self): self._createWindow() self.stayWin = 0 def _createWindow(self): self.win = GraphWin("ThreeDoor", 800, 800) self.… Re: Please Help! Working on a Monty Hall program...three door Programming Software Development by rollingapes All of this is my code. The only thing my teacher gave me was the function names, button class and graphics class. The rest of the code is things I did myself. Re: Please Help! Working on a Monty Hall program...three door Programming Software Development by woooee We don't have the Button class so can't test your code. Also, if the Button class does not provide a callback (way to call a function when clicked) you will have to write your own. So far you have done very little, even the easy things like randomly choose one door, get the player's selection, etc. so there probably won't be many replies.