4/27/2020

Questions!

Hello!
Today is the questions!----------------------


  1.  Do you have amiibo?(If you have, can you show me?)
  2.  Do you have a Pokémon game?
  3.  Do you think aliens exsist?
  4. What’s the most expensive thing you’ve broken?
  5. What's the funniest word in English?
  6. What’s the most beautiful beach you’ve been to?
----------------------

Ok, now I will type things.

1. I have!

2. Yes I have! It is "Pokemon! Let's go Eevee!"
3.Yes I think it exsist!
4.Don't know about that. I never broke an expensive things.
5.I think it is "Jiggly"
6.The beaches in Hawaii!

So, Bye!!


4/16/2020

So the Projects......AT SCRATCH!!!!!!!!

Hello!
Look at the Title....
Today, I want to show you some projects.....
Yeah...
But you should comment what project is the best!(If you don't like to comment, you don't need to)
First project!
https://scratch.mit.edu/projects/372580923/
You should press the space key to spin the Gacha.
You should check your fortune!
Next is this!(It is Japanese)
https://scratch.mit.edu/projects/378675243/
Ok, here is the Action game, Super Gobo!(スーパーゴボ in Japanese)
You should Jump with the up arrow key, and go left and right with your left, right key!
It is simple!
Last is this!
https://scratch.mit.edu/projects/382813901/
This is the last one!
A shooting Game!
You can shoot with your space key, and left, right, up, down with your arrow keys!

See ya!

4/15/2020

5 questions!

Hello!
Today is the 5 questions!
-----------------
Hello  Leo,  I have some questions today.

1. What computer are you using?
2. Do you have a VR?
3.What are you doing in Corona besides proggraming?
4. What is your favorite character in Smash Bros?
5.Can you tell me about your town?(About Corona)

From, John
-----------------

Ok, let's go to the questions!

1. MacBook
2. I have (Oculus Quest)
3. Nintendo Switch
4. Link!!!!!!!!!!
5. The school is closed, but the shops are open.

Bye!!!

4/13/2020

初日本語ポスト!!!

みなさんこんにちは!!!
今回は前回、英語のポストを出した時に日本語のポストを出すと言ったのでこれから出します!
今回初なので、自己紹介します!!(勝手に決めちゃってごめん)
僕はレオと言います。
新小学4年です!
僕はスイッチをやったり、本を読むことが好きです。
今はコロナですので、暇ですからスクラッチをやってます。

今回はこの辺で終わりましょう!
さようなら!!!

10 Questions!!!!(What OO do you like?)

Hello!
Today, I will answer a letter from John!

---------------
To : Leo

Hello, Leo!
Today, I have some questions!
I just list up some!

1.What is your favorite food?
2.What is your favorite animal?
3.What is your favorite anime / manga?
4.What is your favorite game(software)?
5.What is your favorite character?
6.I heard that you are proggraming in this Corona vacation, but what proggraming language do you use(I want to see the project too)?
7.What is your favorite drink?
8.Which do you use the most of the day?(Gmail, Blogger, Nintendo Switch, Chrome, Affinity Designer)
9.What is your best thing you did in your life?
10.What is your worst thing you did in your life?

And I have 1 more question.

I have a friend called Takumi, and he also sees your blog.
But he only knows a little bit of English.
Can you post a Japanese blog?

From, John
---------------

Ok, ok, first is the repeating(continuous) 10 questions!!

My answers -------------

1. Yakisoba(Fried Noodles)
          Because it is delicious than any food!(Except for Fruits, and deserts)
2. Cheetah
           Because they are fast and cool!
3. Demon Slayer(Kimetsu no Yaiba)
           Because I like Katanas!
4. Splatoon 2, Mario Maker 2, and so on.
          Because Splatoon 2 is a cool game that shoots ink, and it is fun and do another battle for some reason.
           Because Mario Maker 2 allows to make your own courses, and it is creative to make courses.
5. Tanjiro
         Because I love Demon Slayer(Kimetsu no Yaiba)
6. Python and Scratch
           You can copy and paste at Idle, Visual Studio Code, and so on.
 Python Code 1

import random
choices = ["rubber band", "knife", "thunder"]
print("Thunder wins with the knife.Rubber band wins with thunder.Knife wins with Rubber band.")
player = input("Do you want to be rubber band, knife, or thunder (or quit)? ")
while player != "quit":                 # Keep playing until the user quits
    player = player.lower()             # Change user entry to lowercase
    computer = random.choice(choices)   # Pick one of the items in choices
    print("You chose " + player + ", and the computer chose " + computer + ".")
    if player == computer:
        print("It's a tie!")
    elif player == "knife":
        if computer == "rubber band":
            print("You win!Knife cuts rubber band")
        else:
            print("I win!")
    elif player == "thunder":
        if computer == "knife":
            print("You win!")
        else:
            print("I win!")
    elif player == "rubber band":
        if computer == "thunder":
            print("You win!")
        else:
            print("I win!")
    else:
        print("I think there was some sort of error...")
    print()                             # Skip a line
    player = input("Do you want to be rubber band, knife, or thunder? (or quit)? ")




 Python Code 2


import random

lives = 9

words = ['Kirby', 'Mario', 'Zelda', 'Slime', 'Spoon', 'Heart', 'Phone',
         'Mouse', 'Light', 'Plate', 'Shirt', 'Plane',  'Horse', 'Otter',
         'Poop', 'Game', 'Inkling', 'Mississippi', 'Tomato', 'Vocabulary',
         'Encyclopedia' ]

secret_word = random.choice(words).lower()

unknown_letters_count = len(secret_word)
clue = list('?' * unknown_letters_count)


heart_symbol = u'\u2764'

guessed_word_correctly = False


def  update_clue(guessed_letter, secret_word, clue, unknown_letters_count):
    index = 0
    while index < len(secret_word):
        if guessed_letter == secret_word[index]:
            clue[index] = guessed_letter
            unknown_letters_count = unknown_letters_count - 1
        index = index + 1
       
    return unknown_letters_count
   

difficulty = input('''Choose difficulty (type 1, 2 or 3):
1 Easy
2 Normal
3 Hard
''')
difficulty = int(difficulty)

if difficulty == 1:
    lives = 12
   
elif difficulty == 2:
    lives = 9

elif difficulty == 3:
    lives = 5

while lives > 0:
    print(clue)
    print('Lives left is: ' + heart_symbol * lives)
    guess = input('Type the letter or the whole word: ').lower()


    if guess == secret_word:
        guessed_word_correctly = True
        break
    elif guess in secret_word:
        unknown_letters_count = update_clue(guess, secret_word, clue, unknown_letters_count)
    else:
        print('Sorry, it is not correct, you lose a life.')
        lives = lives - 1

    if unknown_letters_count == 0:
        guessed_word_correctly = True
        break
       


if guessed_word_correctly:
    print('You won! The secret word was ' + secret_word)

else:
    print('Sorry, you lose. The secret word was ' + secret_word



Scratch Code1
                  https://scratch.mit.edu/projects/119582989/

Scratch Code2
                  https://scratch.mit.edu/projects/169690136/


7. Hot Chocolate
        Because Hot Chocolate is yummy!

8. Blogger and Nintendo Switch
        Because I use everyday.

9. Scored a goal at soccer for the first time
          I was very happy!!!!
10. About Corona(Every one dies)
         I was sad.....(-_-)

And the last question....
Yes! I will post Japanese posts sometimes!!!!

So, Bye!!!

4/12/2020

My opinion about advertisements

Hello!
Today's question is, 'Some people say that shopper are influenced by advertisements too easily. What do you think about that?'
My opinion is, "I think it is good about that."
Because I think it is good to buy things with advertisements.
The next reason is because if it is a really convenient thing, I think they should be influenced.

So, Bye!

4/08/2020

My opinion about paper books VS digital books

Hello!
Today's question is, 'These days, many people read digital books on their computers. Do you think people will stop buying paper books in future?'

My opinion is, "Yes"!
Because my future imagination is like robots, smart home, and all is moving with electricity or other things but no paper!
So, I think that's the reason.
The second reason is because digital books are easy to read in computers but, paper book arn't.
So,  I think my opinion is Yes.

Super Leo 4!

  Leo : Let's do this! Reimu : I'll kill those monsters, so you go! Leo : Yeah! I'll go to the goal!  Leo : Let's go〜! ? Wai...