Created
May 24, 2014 04:59
はじめてのPython 書式5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#coding: UTF=8 | |
__author__ = 'masahiro' | |
import math, random, numpy | |
from datetime import date | |
print math.ceil(5.2) | |
for i in range(5): | |
print random.random() | |
print date.today() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment