Focus mode
def square(x):
return x *x
square(3)
9
def power(x, y):
return x ** y
power(2, 3)
8
def f(x):
return 2*x, 10*x
f(10)
(20, 100)
a, b = f(10)
a
20
b
100
def f(x,y):
return 2*x*y, (10*x)**y
f(10,2)
(40, 10000)
Programs to Accelerate Your Progress in a Software Career
Join our 4-8 month intensive Patika+ bootcamps, start with the fundamentals and gain comprehensive knowledge to kickstart your software career!
You need to enroll in the course to be able to comment!