wordwrap a very long string

This question has been asked here before: Who has solved the long-word-breaks-my-div problem? (hint: not stackoverflow) word wrap in css / js CSS: how can I force a long string (without any blank) to be wrapped in XUL and/or HTML CSS overflow with long URL Long story short: As far as CSS solutions go you … Read more

long long in C/C++

The letters 100000000000 make up a literal integer constant, but the value is too large for the type int. You need to use a suffix to change the type of the literal, i.e. long long num3 = 100000000000LL; The suffix LL makes the literal into type long long. C is not “smart” enough to conclude … Read more

What is the maximum float in Python?

For float have a look at sys.float_info: >>> import sys >>> sys.float_info sys.floatinfo(max=1.7976931348623157e+308, max_exp=1024, max_10_exp=308, min=2.2 250738585072014e-308, min_exp=-1021, min_10_exp=-307, dig=15, mant_dig=53, epsil on=2.2204460492503131e-16, radix=2, rounds=1) Specifically, sys.float_info.max: >>> sys.float_info.max 1.7976931348623157e+308 If that’s not big enough, there’s always positive infinity: >>> infinity = float(“inf”) >>> infinity inf >>> infinity / 10000 inf The long type has … Read more