import jovian
jovian.commit()
[jovian] Saving notebook..
[jovian] Updating notebook "cb0a9e657cbf40c28e7dfe9e986e9efb" on https://jvn.io
[jovian] Uploading notebook..
[jovian] Capturing environment..
[jovian] Committed successfully! https://jvn.io/saboomayank/cb0a9e657cbf40c28e7dfe9e986e9efb
print('Hello World!')
Hello World!
import time
time.sleep(3)
def say_hello(recipient):
return 'Hello, {}!'.format(recipient)
say_hello('Mayank')
'Hello, Mayank!'
import numpy as np
def square(x):
return x*x
x = np.random.randint(1,10)
y =square(x)
time.sleep(5)
print('%d suqared is %d' % (x,y))
7 suqared is 49
print('%d squared is %d' % (x,y))
7 squared is 49
y=10
print('%d squared is %d'%(x,y))
7 squared is 10