Bài tập về Hàm (function)
Các bài tập thực hành về hàm (function)
say_hello('Bumbii Academy')
# Hello, Bumbii Academy.c = add(10, 5) # 15a = square(2) # 4
b = square(3) # 9is_even(10) # True
is_even(9) # FalseLast updated
Các bài tập thực hành về hàm (function)
say_hello('Bumbii Academy')
# Hello, Bumbii Academy.c = add(10, 5) # 15a = square(2) # 4
b = square(3) # 9is_even(10) # True
is_even(9) # FalseLast updated
introduce("Peter", 20)
# I'm Peter, I'm 20 years old.S = calculate_area(10, 5) # 50
S = calculate_area(8, 4) # 32C = (F - 32) * 5 / 9