LoginSignup
1
2

More than 5 years have passed since last update.

paiza.ioでpython

Posted at

概要

paiza.ioでpythonやってみた。
モジュール調べてみた。

python2の場合

Python: 2.7.12 (default, Nov 19 2016, 06:48:10) 
[GCC 5.4.0 20160609]
scipy: 0.17.0
numpy: 1.11.0
matplotlib: 1.5.1
pandas: 0.20.3

python3の場合

Python: 3.5.2 (default, Sep 14 2017, 22:51:06) 
[GCC 5.4.0 20160609]
scipy: 0.17.0
numpy: 1.11.0
matplotlib: 1.5.1
pandas: 0.20.3

サンプルコード

import sys
print ('Python: {}'.format(sys.version))
import scipy
print ('scipy: {}'.format(scipy.__version__))
import numpy
print ('numpy: {}'.format(numpy.__version__))
import matplotlib
print ('matplotlib: {}'.format(matplotlib.__version__))
import pandas
print ('pandas: {}'.format(pandas.__version__))
import wave
import time
import random
import os
import json
#import thread
import PIL
import zipfile
import argparse
import math
import uuid
import glob
import csv
import gzip
import collections
import re
import tarfile
import threading
#import Image





以上。

1
2
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
1
2