Syndicate content

Feed aggregator

Python shell history, autocompletion and RC file

Andrea Corbellini - Tue, 11/03/2009 - 14:12
Every Python developer knows that the Python shell can speed up the work, but not anybody know how fast it can be. In Bash you can browse the history of previously typed commands and have autocompletion with the tab key. Why not having the same features in the Python shell too? History On UNIX-like systems, Python is shipped [...] 1
Categories: BeeSeek feeds

Hello world!

Andrea Corbellini - Mon, 11/02/2009 - 13:36
#!/usr/bin/python if __name__ == '__main__': print "Hello world!" Posted in Uncategorized
Categories: BeeSeek feeds