473,804 Members | 2,755 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Suggesion for an undergrad final year project in Python

Hi,

I am doing my undergrade CS course. I am in the final year, and would
like to do my project involving Python. Our instructors require the
project to have novel ideas. Can the c.l.p people shed light on this
topic?

Jul 18 '05 #1
11 5228
Sridhar wrote:
Hi,

I am doing my undergrade CS course. I am in the final year, and would
like to do my project involving Python. Our instructors require the
project to have novel ideas. Can the c.l.p people shed light on this
topic?

You could write a Python program that writes novels.
Jul 18 '05 #2
Sridhar said the following on 2/1/2005 2:11 AM:
Hi,

I am doing my undergrade CS course. I am in the final year, and would
like to do my project involving Python. Our instructors require the
project to have novel ideas. Can the c.l.p people shed light on this
topic?


You try and implement some CS concepts you have learnt using Python. For
example, if you had a course on parsing and compiler design, try to
implement a simple language in Python.

Or if you like Computer Graphics, see if you can implement things like
Phong shading and things in that field. This may not be novel like your
professors want. But you can make it novel by allowing the user to
rotate the object and show how the shadow and shading get transformed.

Or if you are the networking types, come up with a peer-to-peer chat
application with whitetboard capability, which I am sure will be fairly
novel.

Look within for answers :-)

That way you will reinforce your theory and learn Python as well.

Thanks,
--Kartic
Jul 18 '05 #3
On Tue, 01 Feb 2005 12:11:47 +0000, Kartic wrote:
Sridhar said the following on 2/1/2005 2:11 AM:
Hi,

I am doing my undergrade CS course. I am in the final year, and would
like to do my project involving Python. Our instructors require the
project to have novel ideas. Can the c.l.p people shed light on this
topic?


You try and implement some CS concepts you have learnt using Python. For
example, if you had a course on parsing and compiler design, try to
implement a simple language in Python.


Could I suggest going for an area that particularly interests you ; rather
than saying "what sort of project ...." come up with an area of interest -
this'll mean you probably have more knowledge and will put in more
effort - and then ask for ideas - ideally about something that is missing.

Jul 18 '05 #4
On 31 Jan 2005 23:11:58 -0800, Sridhar <sr************ *@gmail.com> wrote:
Hi,

I am doing my undergrade CS course. I am in the final year, and would
like to do my project involving Python. Our instructors require the
project to have novel ideas. Can the c.l.p people shed light on this
topic?


Seems to me you should find this novel idea and /then/ find the tools to
implement it. Hopefully Python would be one such good tool.

I don't have novel ideas anymore, so I can't help ...

The type interference engine for Python they talk about in some other
threads here would be a cool and useful, and "hard CS", project, but I
suspect it's too big a task. And it has been done for SML and other
languages so I don't know if it's strictly "novel".

/Jorgen

--
// Jorgen Grahn <jgrahn@ Ph'nglui mglw'nafh Cthulhu
\X/ algonet.se> R'lyeh wgah'nagl fhtagn!
Jul 18 '05 #5
Paul Robson wrote:
On Tue, 01 Feb 2005 12:11:47 +0000, Kartic wrote:

Sridhar said the following on 2/1/2005 2:11 AM:
Hi,

I am doing my undergrade CS course. I am in the final year, and would
like to do my project involving Python. Our instructors require the
project to have novel ideas. Can the c.l.p people shed light on this
topic?


You try and implement some CS concepts you have learnt using Python. For
example, if you had a course on parsing and compiler design, try to
implement a simple language in Python.

Could I suggest going for an area that particularly interests you ; rather
than saying "what sort of project ...." come up with an area of interest -
this'll mean you probably have more knowledge and will put in more
effort - and then ask for ideas - ideally about something that is missing.


Exactly. If you have an interest in mathematics, then look into
Numarray. Graphics: Panda3d, Blender, pygame... The list goes on. Feel
free to append.
Jul 18 '05 #6
How about a tool that can compute the intersection/union/disjunction of
boolean expressions, and return the result as a boolean expression?
This is something I've had on my plate for awhile, but haven't been
able to get around to doing.

As a simple example, assume we have the following expressions:

e1 = (y)
e2 = ((not x) and (not y)) or ((not x) and (y) and (z))

The union of these two would be ((not x) or (y)). The simplest
representation of the result would be best.
To make it harder consider the following additional requirements:

1) Instead of just boolean variables, allow variables with more than
two discrete values (i.e., True and False). For example, if a variable
x can represent the values 1, 2, and 3, then an expression could test
for x!=3, or x>1, or even x in [1,3].

2) Use Python's native data structures to represent expressions. Using
the example above, we might have something like this:

e1 = [{'y':True}]
e2 = [{'x':False, 'y':False}, {'x':False, 'y':True, 'z':True}]

How you might extend this to non-boolean expressions would be up to
you.

3) Make it fast, and scalable to many variables (up to at least 50). I
haven't studied this extensively, but I believe a Quine-McKlusky method
is order n^2 with n being the number of variables, so this will quickly
blow up as the number of variables increases.

4) As my example in (2) suggested, make variable names strings. This
allows arbitrary names. For non-boolean discrete variables, allow any
arbitrary list of numbers or strings as elements.

5) Since a side-effect of the program will (probably) be the ability to
reduce expressions to their simplest representation, make this
capability a part of the public API, since that's a useful function in
itself.

Jul 18 '05 #7
How about writing some gtk fronted to pgp.. That might be both useful
(at least for me) and teach you about pgp and pyGTK, that is writing
gui with python.

Jul 18 '05 #8

"Sridhar" <sr************ *@gmail.com> wrote in message
news:11******** **************@ c13g2000cwb.goo glegroups.com.. .
Hi,

I am doing my undergrade CS course. I am in the final year, and would
like to do my project involving Python. Our instructors require the
project to have novel ideas. Can the c.l.p people shed light on this
topic?


Some months ago, maybe a year ago, Brett Cannon asked on the Py-Dev mailing
list a similar question about a CS master's thesis. He got around 10
sensible suggestions. Perhaps a few could be scaled down to a senior
thesis level. In any case, you could check the archives at www.python.com
of the pydev summaries that he prepares every two weeks ago.

Terry J. Reedy

Jul 18 '05 #9
[Sridhar]
I am doing my undergrade CS course. I am in the final year, and would
like to do my project involving Python. Our instructors require the
project to have novel ideas. Can the c.l.p people shed light on this
topic?


PyPy is chock full of novel ideas, given that two of the main developers
are Armin Rigo (of psyco fame) and Christian Tismer (stackless python).

PyPy is a project, which has obtained European funding, to reimplement
python *in python*, a very laudable goal.

http://codespeak.net/pypy/

Psyco is a "specialisi ng compiler" for cpython, which essentially does
something like just-in-time compilation, but with a different slant.

http://psyco.sourceforge.net/introduction.html

Armin's paper on the techniques used should make an interesting read for
your CS professors:

http://psyco.sourceforge.net/theory_psyco.pdf

Stackless python has support for full coroutines, as opposed to
cpython's current support for semi-coroutines. In the past, Stackless
used to support continuations, but no longer does because of the
complexity of adapting the cpython interpreter to support them. But
Christian's implementation experience will hopefully guide PyPy in the
direction of supporting both coroutines and continuations.

http://www.stackless.com/

As for what you could do in the PyPy project, I have no suggestions
since I am not involved in the project. But I am sure that a message to
pypy-dev will elicit plenty of ideas.

http://codespeak.net/mailman/listinfo/pypy-dev

Lastly, the jython project is undergoing a bit of renaissance at the
moment, and there's plenty of work to be done. A message to jython-dev
volunteering time is unlikely to go unnoticed. Particularly, the parser,
code generation and AST are areas which require a fair amount of rework.
But there is less opportunity to use "novel ideas" in jython, so it may
not interest your professors, unless you have some novel ideas of your
own to bring to the project.

http://lists.sourceforge.net/lists/listinfo/jython-dev

How much time, over how long a period, do you have available for your
project?

Best of luck,

--
alan kennedy
------------------------------------------------------
email alan: http://xhaus.com/contact/alan
Jul 18 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
4455
by: SemSem | last post by:
iam in the final year in computer scince department. i have to choose a project to work in all this year and at the final i have to give them the project and documentaion and live demo of what i did? iam very confussed about what to choose to do in this project . if there some one can help me with some ideas about this final project . thank u all. -- Islam Khalil,
1
1815
by: ieyra204 | last post by:
hi guys, i need help for my final year project. i use to make a databases for student to check their result using SMS. i use microsoft access for the database but i did'nt know how to implement it through GSM module so the data can be access using handphone... is there any website that you all can point it out to me? or maybe you guys can explain it more to me... really2 need help from you guys..
2
4071
by: micangello | last post by:
i need ideas on what my final year project can be about i have studied 2 years of pure math (advanced calculus and algebra, topology, statistics..... ) i then switched ot computer science now in in my last year in Computer Science i have taken courses in Numerical analysis Operation Research
2
1569
by: micangello | last post by:
I im in my last year computer science,we have a final year project for Automating File systems..we're using C++ since we need to create classes for the inode and blocks and superblock ... etc... but the problem is that we only have basic knowledge of C++ and nothing about the .net framework... i need to know what should we be studying in order to finish the project in less that 3 months time, we need to know if its easier to work with visual...
2
3021
by: bhushanshitole | last post by:
Hey Friends, I just finished my 3rd year in Computer Science . And i got selected in CALSOFT for final year project and i am asked to come up with some good creative ideas for the project... I'm interested in working in Linux and topics like Data Compression, Network security and Cryptography...... But it should be some innovative idea So if you guys have any idea???
6
5107
by: aramaram | last post by:
hi i am interested in databasing using sql technics, i have no idea for my final year project, i would welcome any ideas and suggestions, i would appreciate it very much. thank you for your time
0
10568
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10323
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10074
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9138
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7613
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6847
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4292
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3813
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2988
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.