Skip to content

Commit

Permalink
Unit 34
Browse files Browse the repository at this point in the history
  • Loading branch information
jimin-kiim committed Jul 6, 2021
1 parent 744c62d commit 4313387
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file modified Bootstrap 과제/.DS_Store
Binary file not shown.
Binary file added 파이썬 과제/34.4퀴즈.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 8 additions & 9 deletions 파이썬 과제/hello.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
for i in range(1,101):
if i%22==0:
print('FizzBuzz')
elif i%2==0:
print('Fizz')
elif i%11==0:
print('Buzz')
else:
print(i)
class Knight:
def __init__(self, health,mana,armor):
self.health = health
self.mana = mana
self.armor = armor

def slash(self):
print('베기')

0 comments on commit 4313387

Please sign in to comment.