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.

Python一時間触ってみて

Last updated at Posted at 2019-11-06
  • Pythonはスペースキー5回でインデントができる、便利
  • inputで簡単に文字入力ができるが、複数入力の場合は
map(int,input.split())
```で行う、少し面倒
また、改行で標準入力をする時はrange関数を用いる

int(input()) for i in range(5)

 - 基本的なif文やfor文は他の言語とあまり変わりはないが、for文はrangeを使うと少し複雑なものでも一行で定義できるのでここすごく好き、便利
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?