Tagged Questions

24
votes
11answers
6k views

How to convert an integer to the shortest url-safe string in Python?

I want the shortest possible way of representing an integer in a URL. For example, 11234 can be shortened to '2be2' using hexadecimal. Since base64 uses is a 64 character encoding, it should be ...
4
votes
4answers
256 views

Python Code Shortening

I was trying to solve this problem here :- https://www.spoj.pl/problems/PHIVAL/ The questions asks you to output as many decimal digits of the golden ratio (1+sqrt(5))/2 as possible and also try to ...
2
votes
3answers
58 views

Python: how can I import the namespace of some object to current namespace?

I have a Python class, which contains several nested parameter groups: class MyClass(object): #some code to set parameters def some_function(self): print ...
0
votes
3answers
95 views

Is there a better way to write this addition function?

Can the following method be written any shorter (without semicolons) in Python in a way I have not seen? @staticmethod def __add(a, b): value = a + b if value > 1: integer = ...