Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.011 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'python?': 0.05; 'c++,': 0.07; 'python': 0.08; 'subject:language': 0.09; 'c++': 0.12; 'wrote:': 0.15; 'benjamin': 0.16; 'c++;': 0.16; 'compilers': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'java.': 0.16; 'lurk': 0.16; 'pm,': 0.16; 'received:209.85.210.174': 0.19; 'received:mail- iy0-f174.google.com': 0.19; 'language': 0.20; 'java': 0.21; 'header:In-Reply-To:1': 0.22; 'code': 0.24; 'message- id:@mail.gmail.com': 0.28; '24,': 0.29; 'compile': 0.29; 'environment': 0.29; 'subject:learning': 0.30; 'sun,': 0.30; 'chris': 0.32; 'list': 0.32; 'it.': 0.33; 'to:addr:python-list': 0.34; 'there': 0.34; 'project': 0.35; "isn't": 0.35; 'tutorials': 0.35; 'questions.': 0.36; 'but': 0.37; 'using': 0.37; 'received:google.com': 0.38; 'received:209.85': 0.38; 'subject:: ': 0.38; 'mailing': 0.38; 'run': 0.39; 'to:addr:python.org': 0.39; 'received:209': 0.40; 'where': 0.40; 'hope': 0.60; 'your': 0.60; 'results': 0.62; 'dedicated': 0.62; 'show': 0.67; 'yourself': 0.68; "'make'": 0.84; 'gregg': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=8f/WkUWSDbpMG3tcBSS1lZ3IAshZyk/XdHIfHb8UHJs=; b=t/ag5gBzZYYjuAw5AlZO2B13e0qVggQaskHSTbI25Gno/9deF9761oIRaCy2gzLJAB gxu96/XnYRu9ud+IfPTF1AeMzMovbay1vEHLfnQ3+lBhAi5fJUqHqLEMByZxNsfEUom+ HQxZ4yeWCRy7RuwICJYr7uo48xPq1IQKQ1Crw= MIME-Version: 1.0 In-Reply-To: <4E2BDEED.9030507@virginmedia.com> References: <4E2BDEED.9030507@virginmedia.com> Date: Sun, 24 Jul 2011 19:35:10 +1000 Subject: Re: learning another programing language From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 22 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1311500112 news.xs4all.nl 23869 [2001:888:2000:d::a6]:49457 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:10201 On Sun, Jul 24, 2011 at 6:59 PM, Benjamin Gregg wrote: > Hi > python was my first language but I need to learn C++ and java for a project > (No there isn't an alternative) > and I want to know is there any good tutorials or tips for learning C++/java > after using python? Fiddle. Fiddle, fiddle, fiddle. Get yourself one of the good compilers (gcc for C++; I don't know which is the best Java compiler), and set yourself up an environment where you can make small edits to your code and very quickly compile and run it. I like to use SciTE with a good makefile; pressing F7 in SciTE will 'make' the current project and show you the results immediately. Also, find a good mailing list dedicated to C++, and one dedicated to Java. Lurk there for a while and read tips, and when you run into specific problems, ask clear questions. Hope that helps! Chris Angelico