Skip to content

Commit

Permalink
добавлен скрипт про Валли
Browse files Browse the repository at this point in the history
  • Loading branch information
Melevir committed Aug 31, 2016
1 parent 447504a commit 4b8c39e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions wallie.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import random


def get_wallie_action():
possible_actions = [
'считает новых пользователей',
'готовит новую задачу',
'что-то проверяет',
'придумывает новую ачивку',
'проверяет чью-то задачу',
'проставляет ссылки в энциклопедии',
'вычитывает статью',
'ищет стажировки для студентов',
]
return 'Валли ' + random.choice(possible_actions)


if __name__ == '__main__':
action = get_wallie_action()
print action

3 comments on commit 4b8c39e

@ivanmish
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

в последней строчке сделал " print(action) "и программа заработала

@Melevir
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Хорошо, осталось форкнуть репозиторий и поселить в нём правильную версию кода. Как это сделать, написано в задаче.

@bagorko
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

git push не получается - пишет: Internal Server Error occurred, error time: 2017-05-17 19:09:11

Please sign in to comment.