Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #63702

Re:python first project

Path csiph.com!usenet.pasdenom.info!dedibox.gegeweb.org!gegeweb.eu!nntpfeed.proxad.net!proxad.net!feeder1-2.proxad.net!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail
Return-Path <python-python-list@m.gmane.org>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.013
X-Spam-Evidence '*H*': 0.97; '*S*': 0.00; 'python.': 0.02; 'cents': 0.07; 'lines,': 0.07; 'tkinter': 0.07; 'machines.': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'window.': 0.09; 'python': 0.11; 'gui': 0.12; 'suggest': 0.14; 'wrote': 0.14; 'expecting': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'think.': 0.16; 'wxpython': 0.16; 'subject:python': 0.16; 'do.': 0.18; 'everyone,': 0.19; 'file,': 0.19; 'subject:project': 0.19; 'programming': 0.22; 'manual': 0.22; 'replace': 0.24; 'helpful': 0.24; 'handling': 0.26; 'pending': 0.26; 'task': 0.26; 'second': 0.26; 'header:X -Complaints-To:1': 0.27; 'record': 0.27; 'code': 0.31; 'usually': 0.31; 'bunch': 0.31; 'file': 0.32; 'class': 0.32; 'this.': 0.32; 'text': 0.33; 'transaction': 0.35; 'point.': 0.35; 'but': 0.35; 'there': 0.35; 'version': 0.36; 'belong': 0.36; 'done': 0.36; 'next': 0.36; 'example,': 0.37; 'wrong': 0.37; 'application': 0.37; 'window': 0.38; 'to:addr:python-list': 0.38; 'that,': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'how': 0.40; 'even': 0.60; "you're": 0.61; 'complete': 0.62; 'real': 0.63; 'group,': 0.63; 'details': 0.65; 'details,': 0.68; 'person,': 0.68; 'records.': 0.68; 'business': 0.70; 'records': 0.73; 'industry': 0.73; 'miss': 0.74; 'saw': 0.77; 'honest': 0.78; 'business,': 0.83; 'different.': 0.84; 'received:myvzw.com': 0.84; 'shared,': 0.84; 'subject::': 0.85; 'url:tk': 0.95; 'dollars': 0.97
X-Injected-Via-Gmane http://gmane.org/
To python-list@python.org
From Dave Angel <davea@davea.name>
Subject Re:python first project
Date Sat, 11 Jan 2014 08:06:41 -0500 (EST)
Organization news.gmane.org
References <ae47738d-b16a-4567-bdd9-07d18db5fc77@googlegroups.com>
X-Gmane-NNTP-Posting-Host 96.sub-70-208-129.myvzw.com
X-Newsreader PiaoHong NewsGroups Reader 1.36
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.5328.1389445491.18130.python-list@python.org> (permalink)
Lines 55
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1389445491 news.xs4all.nl 2949 [2001:888:2000:d::a6]:43104
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:63702

Show key headers only | View raw


 ngangsia akumbo <ngangsia@gmail.com> Wrote in message:
> Hi everyone, 
> 
> I have been around this group for some time and i saw that we have very helpful people here.
> 
Welcome to the group,  and to Python. 

> i have been learning python just for about 5 months now and i have been given a task to do. This will be a leap into the programming industry for me.
> 
Is this a class assignment,  a book assignment, a self assignment,
  or is it to be used by a real business,  perhaps to replace
 manual methods? 

> 
> i am programming a system that will be giving details about finance, purchase(bills pending bills and paid bill), employees record and salary details, warehouse records.
> 
> That is just all i intend to do this all on one GUI application window 

But your code so far is all for a terminal window.  Nothing wrong
 with that, but if the professor is expecting GUI, that's
 different.  A GUI might be tkinter or qt or Wxpython or
 ...

> and to make it to be able to keep records for all the transaction which has been done inputted.  

A key point.  So you need persistence.  You're going to need to
 write data to a file,  and reread it next time the program is
 run. The file might be a bunch of text lines, or it might be a
 database.  And it might belong to this program or be shared, even
 across multiple machines. 

> 
> I have started programming it , but i still feel there are a lot of things i miss out.

I second the recommendation for version 3. And I suggest that if
 this is a business assignment, it's a lot harder than you think. 
 For example,  handling dollars and cents with floats is usually a
 mistake. 
> 
> Please i need some support from any honest person, please and also how to guide me complete this.
> 

> 
> 
> 


-- 
DaveA nr



----Android NewsGroup Reader----
http://www.piaohong.tk/newsgroup

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

python first project ngangsia akumbo <ngangsia@gmail.com> - 2014-01-10 20:18 -0800
  Re: python first project Chris Angelico <rosuav@gmail.com> - 2014-01-11 15:29 +1100
    Re: python first project ngangsia akumbo <ngangsia@gmail.com> - 2014-01-11 08:31 -0800
      Re: python first project Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-01-11 16:40 +0000
  Re:python first project Dave Angel <davea@davea.name> - 2014-01-11 08:06 -0500
    Re: python first project ngangsia akumbo <ngangsia@gmail.com> - 2014-01-11 08:28 -0800
      Re: python first project Dave Angel <davea@davea.name> - 2014-01-11 19:15 -0500
  Re: python first project Denis McMahon <denismfmcmahon@gmail.com> - 2014-01-11 16:28 +0000
  Re: python first project Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2014-01-11 12:17 -0500
    Re: python first project ngangsia akumbo <ngangsia@gmail.com> - 2014-01-11 09:55 -0800
      Re: python first project Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2014-01-11 17:10 -0500
        Re: python first project ngangsia akumbo <ngangsia@gmail.com> - 2014-01-11 21:14 -0800
          Re: python first project Chris Angelico <rosuav@gmail.com> - 2014-01-12 17:04 +1100
            Re: python first project ngangsia akumbo <ngangsia@gmail.com> - 2014-01-11 23:30 -0800
          Re: python first project Emile van Sebille <emile@fenx.com> - 2014-01-12 08:37 -0800
            Re: python first project ngangsia akumbo <ngangsia@gmail.com> - 2014-01-12 08:47 -0800
          Re: python first project MRAB <python@mrabarnett.plus.com> - 2014-01-12 18:50 +0000
      Re: python first project Chris Angelico <rosuav@gmail.com> - 2014-01-12 09:15 +1100
  Re: python first project Wolfgang Keller <feliphil@gmx.net> - 2014-01-11 19:34 +0100

csiph-web