Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 19, 2022 10:47 pm GMT

Python challenge_14

Up and down

simple challenge

Define a function named up_down that takes a single number
As its parameter.

Your function return a tuple containing two numbers
The first should be one lower than the parameter,
And the second should be one higher.

For example:

calling up_down(5) should return (4, 6)

My Solution

def up_down(number):    down = number - 1    up = down + 2    return (down, up)

Another Solution

def up_down(x):    return (x-1, x+1)

All the best to you.


Original Link: https://dev.to/mahmoudessam/python-challenge14-35g8

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To