{"id":288,"date":"2020-02-25T22:08:00","date_gmt":"2020-02-25T13:08:00","guid":{"rendered":"http:\/\/sunappy.sunafukin.jp\/?p=288"},"modified":"2021-05-25T18:30:02","modified_gmt":"2021-05-25T09:30:02","slug":"%e6%a8%99%e6%ba%96%e5%85%a5%e5%8a%9b%e3%82%92%e5%8f%97%e3%81%91%e5%8f%96%e3%82%8a%e3%80%81%e5%87%ba%e5%8a%9b%e3%81%99%e3%82%8bpython3%e5%af%be%e5%bf%9c","status":"publish","type":"post","link":"https:\/\/sunafukin.jp\/?p=288","title":{"rendered":"\u6a19\u6e96\u5165\u529b\u3092\u53d7\u3051\u53d6\u308a\u3001\u51fa\u529b\u3059\u308b(Python3\u5bfe\u5fdc)"},"content":{"rendered":"\r\n<p>\u6a19\u6e96\u5165\u529b\u3092\u5229\u7528\u3057\u3066Python3\u3067\u5b9f\u884c\u3057\u305f\u5834\u5408\u306e\u30bd\u30fc\u30b9\u3092\u30e1\u30e2\u7528\u3068\u3057\u3066\u8f09\u305b\u3066\u3044\u307e\u3059\u3002input()\u3067\u53d7\u3051\u53d6\u308b\u5165\u529b\u306fstr\u578b\u306b\u306a\u308b\u306e\u3067\u3001\u6574\u6570\u3084\u5c0f\u6570\u306b\u3059\u308b\u5834\u5408\u306fint\u3084float\u306b\u5909\u63db\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>1\u884c\u306e\u6587\u5b57\u5217\u3092\u5165\u529b\u3057\u3001\u51fa\u529b\u3059\u308b\u3002<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>strLine = input().rstrip()\r\nprint(strLine)<\/code><\/pre>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>1\u884c\u306e\u6570\u5024\u3092\u5165\u529b\u3057\u3001\u51fa\u529b\u3059\u308b\u3002<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>num = int(input().rstrip())\r\nprint(num)<\/code><\/pre>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>\u7d42\u308f\u308a\u306e\u884c\u304cEOF\u307e\u3067\u306e\u6587\u5b57\u5217\u3092 \u4e00\u884c\u305a\u3064\u306e\u5165\u529b\u3057\u3001\u51fa\u529b\u3059\u308b\u3002<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>import sys\r\n\r\nwhile True:\r\n    strLine = sys.stdin.readline().rstrip()\r\n    if strLine == '':\r\n        break\r\n    else:\r\n        print(strLine)<\/code><\/pre>\r\n\r\n\r\n\r\n<ul>\r\n<li>\u6c7a\u307e\u3063\u305f\u884c\u6570\u306e\u6587\u5b57\u5217\u3092\u5165\u529b\u3057\u3001\u51fa\u529b\u3059\u308b\u3002<br \/>\u4f8b.3\u884c\u306e\u6587\u5b57\u5217\u3092\u5165\u529b\u3059\u308b\u5834\u5408<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>n = 3\r\n\r\nfor i in range(n):\r\n    strLine = input().rstrip()\r\n    print(strLine)<\/code><\/pre>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>n\u884c\u306e\u6587\u5b57\u5217\u3092\u5165\u529b\u3057\u3001\u51fa\u529b\u3059\u308b\u3002<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>n = int(input().rstrip())\r\n\r\nfor i in range(n):\r\n    strLine = input().rstrip()\r\n    print(strLine)<\/code><\/pre>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>1\u884c\u306e\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u533a\u5207\u308a\u306e\u6587\u5b57\u5217\u3092\u5165\u529b\u3057\u3001\u5206\u5272\u3057\u3066\u51fa\u529b\u3059\u308b \u3002split\u306e\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3\u306e\u4e2d\u3092 \u534a\u89d2\u30b9\u30da\u30fc\u30b9 \u304b\u3089\u30ab\u30f3\u30de\u306b\u5909\u66f4\u3059\u308b\u3068\u3001\u30ab\u30f3\u30de\u533a\u5207\u308a\u306e\u6587\u5b57\u5217\u3092\u5206\u5272\u3057\u307e\u3059\u3002<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>strLine = input().rstrip().split(\" \")\r\n\r\nfor s in strLine:\r\n    print(s)<\/code><\/pre>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>1\u884c\u306bn\u500b\u306e\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u533a\u5207\u308a\u306e\u6587\u5b57\u5217\u3092\u5165\u529b\u3057 \u3001\u5206\u5272\u3057\u3066\u51fa\u529b\u3059\u308b\u3002 split\u306e\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3\u306e\u4e2d\u3092 \u534a\u89d2\u30b9\u30da\u30fc\u30b9 \u304b\u3089\u30ab\u30f3\u30de\u306b\u5909\u66f4\u3059\u308b\u3068\u3001\u30ab\u30f3\u30de\u533a\u5207\u308a\u306e\u6587\u5b57\u5217\u3092\u5206\u5272\u3057\u307e\u3059\u3002<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>n = int(input().rstrip())\r\nstrLine = input().rstrip().split(\" \")\r\n\r\nfor i in range(n):\r\n    print(strLine[i])   <\/code><\/pre>\r\n","protected":false},"excerpt":{"rendered":"<p>\u6a19\u6e96\u5165\u529b\u3092\u5229\u7528\u3057\u3066Python3\u3067\u5b9f\u884c\u3057\u305f\u5834\u5408\u306e\u30bd\u30fc\u30b9\u3092\u30e1\u30e2\u7528\u3068\u3057\u3066\u8f09\u305b\u3066\u3044\u307e\u3059\u3002input()\u3067\u53d7\u3051\u53d6\u308b\u5165\u529b\u306fstr\u578b\u306b\u306a\u308b\u306e\u3067\u3001\u6574\u6570\u3084\u5c0f\u6570\u306b\u3059\u308b\u5834\u5408\u306fint\u3084float\u306b\u5909\u63db\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 1\u884c\u306e\u6587\u5b57\u5217\u3092\u5165\u529b\u3057\u3001\u51fa\u529b\u3059\u308b\u3002 1\u884c\u306e\u6570\u5024\u3092\u5165\u529b\u3057\u3001\u51fa\u529b\u3059\u308b\u3002 \u7d42\u308f\u308a\u306e\u884c\u304cEOF\u307e\u3067\u306e\u6587\u5b57\u5217\u3092 \u4e00\u884c\u305a\u3064\u306e\u5165\u529b\u3057\u3001\u51fa\u529b\u3059\u308b\u3002 n\u884c\u306e\u6587\u5b57\u5217\u3092\u5165\u529b\u3057\u3001\u51fa\u529b\u3059\u308b\u3002 1\u884c\u306e\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u533a\u5207\u308a\u306e\u6587\u5b57\u5217\u3092\u5165 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":312,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12],"tags":[],"class_list":["post-288","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python"],"_links":{"self":[{"href":"https:\/\/sunafukin.jp\/index.php?rest_route=\/wp\/v2\/posts\/288"}],"collection":[{"href":"https:\/\/sunafukin.jp\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sunafukin.jp\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sunafukin.jp\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/sunafukin.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=288"}],"version-history":[{"count":19,"href":"https:\/\/sunafukin.jp\/index.php?rest_route=\/wp\/v2\/posts\/288\/revisions"}],"predecessor-version":[{"id":691,"href":"https:\/\/sunafukin.jp\/index.php?rest_route=\/wp\/v2\/posts\/288\/revisions\/691"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/sunafukin.jp\/index.php?rest_route=\/wp\/v2\/media\/312"}],"wp:attachment":[{"href":"https:\/\/sunafukin.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=288"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sunafukin.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=288"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sunafukin.jp\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=288"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}