3
5

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 5 years have passed since last update.

超基礎python勉強セット(テスト投稿)

Last updated at Posted at 2018-05-21

初めまして。
最初のテスト投稿です。

###paiza io
https://paiza.io/ja
ブラウザのプログラミング環境。
若干自由度低いですがどこでも簡単に作れるので良いです。
ログイン必要ないのも結構楽。
python以外にも多数言語で利用できます。

###python-izm
https://www.python-izm.com/
0からpythonを教えてもらったサイト。
本当にお世話になってます。

###teratail
https://teratail.com/
プログラミング専門質問サイト。
超基礎ではないけど基礎を知ってから、詰まる所ところはここで聞くといいです。

あとは・・・ 特になし!
スイマセン ただのテスト投稿なので・・・
しいて言えばgithubでこんなコード書きたいってのを眺めたり写経でもしてみてはいかがでしょうか!

あとはpaizaに書いた適当なコードでもテスト投稿します。
コード内容は大した意味ないです。

random_histgram.py
# coding: utf-8
# Your code here
import numpy as np

c=[0 for i in range(20)]
for i in range(1000):
    q=int(20*np.random.rand())#==1==
    c[q]=c[q]+1

for i in c:
    for j in range(i):
        print('|',end='')
    print('')

==1==にnumpy.randomの色々な乱数入れて挙動勉強してもいいっすね

3
5
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
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?