参照サイト チラ裏の束 様
試しにコード書いてみよう
<html>
<body>
<h1>Hello World!!</h1>
</body>
</html>
def helloworld():
name = input('input your name: ')
message = 'Hello ' + name + ' !'
print(message)
helloworld()
ブロックエディタで書くときはこんな感じ
フォーマットから選択
参照サイト チラ裏の束 様
試しにコード書いてみよう
<html>
<body>
<h1>Hello World!!</h1>
</body>
</html>
def helloworld():
name = input('input your name: ')
message = 'Hello ' + name + ' !'
print(message)
helloworld()
ブロックエディタで書くときはこんな感じ
フォーマットから選択