Saturday, September 10, 2011

An e for a big elephant

Don't be confused with your e and there e in Python. I merely missed that, and thought to keep a self note.

  1. >>> e = 1.1
  2. >>> print(e * 2)
  3. 2.2
  4. >>> print(1e1)
  5. 10.0
  6. >>> epart1 = "e for big elephant is different from"
  7. >>> epart2 = " e in the middle of two numbers"
  8. >>> epart1 + epart2
  9. 'e for big elephant is different from e in the middle of two numbers'

Wednesday, August 3, 2011

First cryptic post

This is just a log of stuff that I may like to share with others.
Once in a while you may see some other cryptic stuff too ~ (

Let's begin the journey in search of the truth of none
// a javascript code
defined = 'undefined';
undefined = defined;
if(undefined){
  alert(typeof(undefined));
}