[ create a new paste ] login | about

Project: python
http://www.fedecarg.com
Language:
Description:
Python Code Snippets

Recent Pastes:

mulamrkreddy - Python, pasted yesterday:
1
2
3
4
5
from flask import Flask
from flask import request
from flask import render_template
from flask import jsonify
from werkzeug.wrappers import BaseResponse as Response
...
view (38 lines, 4 lines of output)
Python, pasted yesterday:
1
2
3
4
points = 10 

def dictionary():
	global points
...
view (29 lines, 7 lines of output)
Python, pasted yesterday:
1
2
3
4
a=10
b=12
c =b-a
print c
view (4 lines, 1 line of output)
Python, pasted yesterday:
1
2
3
4
a=10
b=12
c =a/b
print c
view (4 lines, 1 line of output)
Python, pasted on May 9:
1
2
3
4
5
mlist=[] 
ctr=0
n=0 
nmax=9999999
while n<=nmax: 
...
view (13 lines, 1 line of output)
Python, pasted on May 9:
1
2
3
4
5
mlist=[] 
ctr=0
n=0 
nmax=100000
while n<=nmax: 
...
view (13 lines, 3 lines of output)
Python, pasted on May 9:
1
2
3
4
5
mlist=[] 
ctr=0
n=0 
nmax=100000
while n<=nmax: 
...
view (13 lines, 3 lines of output)
Python, pasted on May 9:
1
2
3
4
5
mlist=[] 
ctr=0
n=0 
nmax=1000000000000
while n<=nmax: 
...
view (13 lines, 1 line of output)
Python, pasted on May 9:
1
2
3
4
5
mlist=[] 
ctr=0
n=0 
nmax=1000000000000 //input("Enter max n ")
while n<=nmax: 
...
view (13 lines, 4 lines of output)
Python, pasted on May 9:
1
2
3
4
5
mlist=[] 
ctr=0
n=0 
nmax=input("Enter max n ")
while n<=nmax: 
...
view (13 lines, 4 lines of output)
Python, pasted on May 8:
1
2
3
4
points = 10 

def dictionary():
    global points
...
view (29 lines, 7 lines of output)
Python, pasted on May 8:
1
2
3
4
points = 10 

def dictionary():
	global points
...
view (29 lines, 7 lines of output)
Python, pasted on May 8:
1
2
3
4
points = 10 

def dictionary():
	global points
...
view (29 lines, 7 lines of output)
PHP, pasted on May 8:
1
2
3
<?php
   var_dump( bcadd(bcpow(2.0 , 100), 1) == bcpow(2.0 , 100) );
?>
view (3 lines, 2 lines of output)
PHP, pasted on May 8:
1
2
3
<?php
   var_dump( bcpow(2.0 , 100) + 1 == bcpow(2.0 , 100) );
?>
view (3 lines, 2 lines of output)
PHP, pasted on May 8:
1
2
3
<?php
   var_dump( pow(2.0 , 50) + 1 == pow(2.0 , 50) );
?>
view (3 lines, 1 line of output)
PHP, pasted on May 8:
1
2
3
<?php
   var_dump( pow(2.0 , 100) + 1 == pow(2.0 , 100) );
?>
view (3 lines, 1 line of output)
PHP, pasted on May 8:
1
2
3
<?php
   var_dump( pow(2.0 , 100) + 1 == pow(2.0 , 100));
?>
view (3 lines, 1 line of output)
PHP, pasted on May 8:
1
2
3
<?php
   var_dump( pow(2.1 , 100) + 1 == pow(2.1 , 100));
?>
view (3 lines, 1 line of output)
PHP, pasted on May 8:
1
2
3
<?php
   print pow(2.1 , 100) + 1 == pow(2.1 , 100) ;
?>
view (3 lines, 1 line of output)