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 1 year has passed since last update.

Python学習(入出力)(初心者)

Posted at

はじめに

この記事は、約1年主にc言語を学んできた私がPythonに少しでも触れてみようとアウトプット用に書いたものです。ほとんどの方には参考にならないとは思います。間違い等あればご指摘いただけると嬉しいです。

Pythonとは

まず、Pythonとは

Pythonとは1991年にオランダ人のグイド・ヴァンロッサムというプログラマーによって開発され、オープンソースで運営されているプログラミング言語。Pythonのプログラミング言語としての主な特徴は、少ないコードで簡潔にプログラムを書けること、専門的なライブラリが豊富にあることなどが挙げられる。
https://www.internetacademy.jp/it/programming/programming-basic/what-is-python.html
インターネット・アカデミー IT業界まるわかりガイド より

Pythonはコードを書きやすく、そして読みやすくするために生まれた言語らしく、だれがコードを書いても似たようなコードになるそうです。

#入出力
hello worldと入力して出力する。

string = input("入力")
print(string)
  • c言語の場合
#include <stdio.h>

int main(void)
{
	printf("入力\n");

	char string1[15],string2[15];
	scanf("%s %s", &string1,&string2);

	printf("%s %s", string1,string2);

	return 0;
}

#c言語との違い

  • 変数宣言がない(変数の型は代入された値によって自動的に決まる)
  • c言語のようなライブラリ読み込みが必要ない
  • 文末にセミコロンをつける必要がない
  • main関数が必要ない

など

#終わりに
今回この記事を通して、ほんの少しだけではありますがPythonの人気の理由が分かった気がしました。特に今までc言語、c#しかやってこなかった私にとってこんなに書きやすく、読みやすい言語があるのかと驚きました。今後も少しずつ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?