0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

# Codewars 8 kyu How many lightsabers do you own? https

Posted at

Codewars 8 kyu

How many lightsabers do you own?
https://www.codewars.com/kata/51f9d93b4095e0a7200001b8/train/pytho0ain/python

Task

Sort the Code

Verbalization

Zachのときは18, そうでなければ0

#Code


def how_many_light_sabers_do_you_own(name=""):
    if name == "Zach":
        return 18
    if name != "Zach":
        return 0

Reference

デフォルト引数(name="”)を設定する

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?