Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Andrew Ongko Newsgroups: comp.lang.python Subject: Re: problem Date: Fri, 15 Jan 2016 08:03:25 +0700 Lines: 20 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: news.uni-berlin.de r1dfYTfgHhuGLL7zbeKVtw+dsENz/9Z9RGKGuOsysK1w== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.008 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'cc:addr:python-list': 0.09; 'cmd': 0.09; 'python': 0.10; 'itself.': 0.11; 'jan': 0.11; 'file,': 0.15; '2016': 0.16; 'idle,': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'wrote:': 0.16; '>': 0.18; 'email addr:gmail.com>': 0.18; 'windows': 0.20; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'subject:problem': 0.22; 'cheers,': 0.22; 'file.': 0.22; 'cc:no real name:2**0': 0.22; 'header:In- Reply-To:1': 0.24; "doesn't": 0.26; 'command': 0.26; 'message- id:@mail.gmail.com': 0.27; '14,': 0.27; 'andrew': 0.27; 'there.': 0.30; 'screen': 0.32; 'run': 0.33; 'problem': 0.33; 'open': 0.33; 'file': 0.34; 'received:google.com': 0.35; 'received:209.85': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; 'there,': 0.37; 'received:209': 0.38; 'thank': 0.38; 'or,': 0.38; 'hello,': 0.40; 'save': 0.60; 'your': 0.60; 'close': 0.61; 'you.': 0.64; 'click': 0.76; '3.5.1': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=/cz7Ow/ISiNRlX6DW+XtCziEids6RvfFMG61auzLHaI=; b=XPT9G29JAaS0MIC59AlpTuW31eRLqVwz5kb8TNdkYAe2HVq7fL6XUJBFcyGgaI7JBo Dj8sOwAgUDGT0930J8gmBdvm72nBS75KGWuZuQGLbAqkEPMVgfoguq9SyKnW6gcFH3wl IHhGYI6/tLVzxXQgwwPCcCamtHKPcAbXIy8ZfYQ5Ip+kCDBCs3N6G4e5VPKLTl+svZTD DTolxb8vGaA9YiDcf1bnSthETH7sPS7kuN6EcRcGY/s+m9nfSdzSUxY1QVTDwzNVmnw6 PD/o9n4aQKWVe4qIdsbBzOUpCzFOOW4PWEuaL4nFZoXhLomFVgZ4bVW0QKgMEktCF1dm HWcg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=/cz7Ow/ISiNRlX6DW+XtCziEids6RvfFMG61auzLHaI=; b=mNQB/fKROODip/WcA/jjYOHXJxSQ7t/kMvu9KSH3cdycxgUbwRig6iNI9EfdhH8Lk9 GIdLYqUd5zukFoJt6wwLnZ8jI2V9ZxOikMmQ8uX5rvuJoHva1CGZVyYVdNb3SkTYwyLA 82TpKs3p7wDQKDESly5I7qb2gCG3ix9F6O+UbGzaz2eB6jMf7C2CObSwgH6zJCfdqygs hMIwKdR73p+BsNa8M9EbvGouwp8/WJLZ9+JjsqMZtQVoO3FfSdHQfBtMeEkuwlM2QAed yf86+emqF5KfE90S44f8pjwZSJitEFhDkrX52AhS8XoRMm4Z0dFh66wuf7icAjmo7AFt shEw== X-Gm-Message-State: ALoCoQmEFHTHJ6HhTKpTJrQdQbhDGXgfAddrs7hVuEqOJHYlT7InwGoU+ykKmHmiN9Ob1THYNLdPuoCaasNc8eyZf7LYe4ZP6Q== X-Received: by 10.129.86.8 with SMTP id k8mr5328204ywb.286.1452819805803; Thu, 14 Jan 2016 17:03:25 -0800 (PST) In-Reply-To: X-Content-Filtered-By: Mailman/MimeDel 2.1.20+ X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:101726 On Jan 14, 2016 10:58 PM, "Shivam Gupta" wrote: > > Hello, > > I am using python 3.5.1 on my windows 8.1. The problem is that whenever i > save any file any after that when i run it the screen just close > immediately after i double click on python file. > > Thank you. Hi there, Try opening the file in Python IDLE, and run it there. Or, open a command line in the directory that contains your file, and type python filename.py At least, this way, the cmd doesn't close by itself. Cheers, Andrew