New language: Python ?

Post here if you don't find any other place for your post. But please, stay on-topic: algorithms, programming or something related to this web site and its services.

Moderator: Board moderators

Post Reply
irmen
New poster
Posts: 5
Joined: Sat Jul 13, 2002 11:05 pm

New language: Python ?

Post by irmen »

Hi
I'd be very happy if the judge could accept a fifth programming language, namely Python.

Python is ideal for the sorts of algorithmic problems found here,
and it is also ready for an online judge system because there's
builtin support for restricted execution.
Furthermore it is extremely portable and doesn't even have to
be compiled, a Python program can be executed right away.

What do you think?
SilentStrike
New poster
Posts: 22
Joined: Fri Jan 04, 2002 2:00 am

Post by SilentStrike »

I'd love to be able to program the problems in Python. It's a nice langauge, and it's implementation is open source.
fpnc
System administrator
Posts: 201
Joined: Sun Oct 07, 2001 2:00 am
Location: Valladolid, Spain

Post by fpnc »

We're involved in major changes at this moment. We're not planning adding any other language by the moment. You'll have to wait for some time. Sorry!
Best regards,

Fernando N
Bj
New poster
Posts: 24
Joined: Mon Oct 17, 2005 1:39 am
Location: Sweden

Post by Bj »

It has gone three years, will you consider Python now? It is a very nice language for some tasks, the only problem being reading from stdin (it is slightly clumsy).
misof
A great helper
Posts: 430
Joined: Wed Jun 09, 2004 1:31 pm

Post by misof »

Try the Sphere online judge: http://spoj.sphere.pl/
It supports lots of different scripting languages. (And registering new members actually works :P )

No offense intended, but the usability of the UVa judge is getting worse and worse :(
shahriar_manzoor
System administrator & Problemsetter
Posts: 399
Joined: Sat Jan 12, 2002 2:00 am

hmm

Post by shahriar_manzoor »

Yes we are having a dull time indeed, whether it is with online contest (problemset standard and submittion delay) or administration. But that's the problem with voluntary jobs, I hope things will improve soon.
Aengus
New poster
Posts: 12
Joined: Thu Oct 30, 2003 1:38 pm
Location: St. Petersburg, Russia
Contact:

Post by Aengus »

Are there any hopes including Python in the number of allowed languages now? Now it becomes to more widespread among the competiotions. For example, it is allowed at Google Code Jam.
TryCatchMe
New poster
Posts: 15
Joined: Fri May 30, 2014 12:09 am

Re: New language: Python ?

Post by TryCatchMe »

Hey all, even though it is about 14 years later, I thought I'd let you know you can now submit problems with Python!
mgavin2
New poster
Posts: 43
Joined: Sat Jul 28, 2012 6:29 pm

Re: New language: Python ?

Post by mgavin2 »

What's the format for submitting python source?

def main():
#entry point ?

or some kind of class Main?
all that matters is AC
mgavin2
New poster
Posts: 43
Joined: Sat Jul 28, 2012 6:29 pm

Re: New language: Python ?

Post by mgavin2 »

hopefully anyone that searches the forums for python code submission format can find this:

I've submitted an AC solution with this format

Code: Select all

#!/usr/bin/python3

def main():
	*code*
	
if __name__ == "__main__":
	main()

all that matters is AC
alamin007
New poster
Posts: 1
Joined: Fri Feb 13, 2015 7:02 pm

Re: New language: Python ?

Post by alamin007 »

I've face a lot of trouble to solve UVa problem . Maximum time I am facing Runtime Error . What wrong is going on I can't understand because when I solve codeforces problem I do not face any problem . Is there any special formate to use python ??
Post Reply

Return to “Other words”