Help for this page

Select Code to Download


  1. or download this
    print "Power of calculation test\n";
    print("line 1: ", -4**1.5, "\n");
    print("line 2: ", (-4)**1.5, "\n");
    print("line 3: ", 1/(-4)**1.5, "\n");
    print("line 4: ", 3 + (-4)**1.5, "\n");
    
  2. or download this
    Power of calculation test
    line 1: -8
    line 2: 0
    line 3: 0
    line 4: 0