Writing your own functions (2/5)
All we have learned till now can be used inside the function. For example, you can easily put conditional statements inside the function body.
For example, we can define a function that will check if the number is odd or even.
12345678910# define a function def is_odd(n): if n % 2 == 0: return "even" else: return "odd" # testing function print('2 is', is_odd(2)) print('3 is', is_odd(3))
Swipe to start coding
Define a function is_positive
checking if the number is positive (in that case return positive), negative (return negative), or equals zero (return zero).
Рішення
Дякуємо за ваш відгук!
single
Запитати АІ
Запитати АІ
Запитайте про що завгодно або спробуйте одне із запропонованих запитань, щоб почати наш чат
Awesome!
Completion rate improved to 2.33Awesome!
Completion rate improved to 2.33
Writing your own functions (2/5)
All we have learned till now can be used inside the function. For example, you can easily put conditional statements inside the function body.
For example, we can define a function that will check if the number is odd or even.
12345678910# define a function def is_odd(n): if n % 2 == 0: return "even" else: return "odd" # testing function print('2 is', is_odd(2)) print('3 is', is_odd(3))
Swipe to start coding
Define a function is_positive
checking if the number is positive (in that case return positive), negative (return negative), or equals zero (return zero).
Рішення
Дякуємо за ваш відгук!
single
Awesome!
Completion rate improved to 2.33
Writing your own functions (2/5)
Свайпніть щоб показати меню
All we have learned till now can be used inside the function. For example, you can easily put conditional statements inside the function body.
For example, we can define a function that will check if the number is odd or even.
12345678910# define a function def is_odd(n): if n % 2 == 0: return "even" else: return "odd" # testing function print('2 is', is_odd(2)) print('3 is', is_odd(3))
Swipe to start coding
Define a function is_positive
checking if the number is positive (in that case return positive), negative (return negative), or equals zero (return zero).
Рішення
Дякуємо за ваш відгук!