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?

More than 3 years have passed since last update.

30代からのプログラミング 12日目【Python入門編】

Posted at

今回からは諸事情によりPythonも勉強していきます。

##学習内容
100 Days of Code - The Complete Python Pro Bootcamp for 2021

Udemy講座です。(英語)

###Day1
#####出力

print
print ("文字列")
# + を用いて文字列同志を結合する事も可能。
print("文字列"\n"文字列")
# この様にすると出力時\nの所で改行される

" "内の文字列を出力する。現時点では出てきていないが数値の出力も可能。

input
print (input("文字列"))

文字列を出力後、入力が出来る。上記の場合は入力された文字をそのまま出力する。

len
print (len("文字列"))

今の所だと数を数えてくれるものという認識。上記の様に入力すると文字列の文字数を出力する。

#####変数

name = input("What is your name?")
print(name)

変数として定義する事で繰り返し使用したりすることが出来る。この場合はnameが該当。
上記を実行すると、What is your name?→入力→入力された名前が出力、となる。

# 変数は上書きが出来る。
a = 10
print(a)
a = 20
print(a)
#とした場合出力結果は
10
20
#となる。

#####本日の課題

print("文字列")
a = input("文字列"\n)
b = input("文字列"\n)
print(a + b)

##所感
HTML/CSSは初歩の初歩から見た目的なフィードバックが即現れるのに対しPythonは電卓を使っているかのような印象を持った。これからどの様な事が出来るようになっていくのか楽しみだ。
コース構成は講義を聞きながら途中途中に簡単な問題があり、それを繰り返しつつ進めた後で総まとめのコーディングをするという流れ。こまめに手を動かさせてくれるので飽きずに受講出来たが最大の問題点は自分は英語が出来ない事か…

0
0
0

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?