KOTA ITO

Generation

generate functionMon, 12 Dec 2022

三つの数字の中の最大値を求める

def my_max(a, b, c): if a >= b and a >= c: return a if b >= a and b >= c: return b return c my_max(1, 2, 3)

Want to kickstart your project?Use the new AI Studio to create your code