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?

100days of code #day1

Posted at

自分について

理系大学卒
2年目
メーカー技術職
ソフトエンジニアにあこがれて勉強中です

記事を書くモチベーション

pythonの学習をしたくていろいろ調べて結局Udemyで出てきたこのコースを受講することにした。
https://www.udemy.com/course/100-days-of-code/?couponCode=LEADERSALE24A
名前が100daysで飽き性の自分もなんだかコツコツ続けれそうという安直な気持ちで
やったことのアウトプットもかねてqiitaで書いてみることに。

#1day

メインはprintとinputの使い方や構文のルールについて。
ゴールは変数とprintとinputを駆使して、バンド名を考えるプログラムを作ること
この辺は学生時代の知識もあり詰まることなくできた。

print("バンド名メーカーへようこそ\nあなたにピッタリなバンド名を考えるよ!")
user_pet_name = input("あなたのペットの名前はなんですか?\n")
user_city_name = input("あなたの出身地は?\n")
print("あなたのバンドの名前は" + user_city_name + user_pet_name + "です!")

さいごに

day100を目指してとりあえず続けたい

0
0
1

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?