In [1]:
3+3
Out[1]:
6
In [2]:
(50 - 5*6)/4
Out[2]:
5.0
In [3]:
5/6
Out[3]:
0.8333333333333334
In [8]:
5.0/6
Out[8]:
0.8333333333333334
In [9]:
5//6
Out[9]:
0
In [11]:
float(5)/6
Out[11]:
0.8333333333333334
In [10]:
# python2の時
from __future__ import division
In [12]:
import math
In [13]:
math.sqrt(36)
Out[13]:
6.0
In [14]:
from math import sqrt
In [16]:
sqrt(36)
Out[16]:
6.0
In [18]:
volume = 10
In [19]:
volume
Out[19]:
10
In [20]:
red = 5
In [21]:
red*volume
Out[21]:
50
In [22]:
'Hello world!'
Out[22]:
'Hello world!'
In [23]:
"Hellor world!"
Out[23]:
'Hellor world!'
In [24]:
print('こんにちは')
こんにちは
In [26]:
print(' She said "hello"')
 She said "hello"
In [27]:
phrase = 'hello'
In [28]:
phrase
Out[28]:
'hello'
In [29]:
print(phrase)
hello
In [30]:
print('My volume is {}'.format(volume))
My volume is 10
In [31]:
phrase = 'hello ' +  'world!'
In [32]:
phrase
Out[32]:
'hello world!'
In [33]:
cities = ['NYC', 'LA', 'SF']
In [34]:
cities
Out[34]:
['NYC', 'LA', 'SF']
In [35]:
cities[0]
Out[35]:
'NYC'
In [36]:
cities[1]
Out[36]:
'LA'
In [37]:
cities[-1]
Out[37]:
'SF'
In [38]:
cities.append('CHI')
In [39]:
cities
Out[39]:
['NYC', 'LA', 'SF', 'CHI']
In [40]:
range(10)
Out[40]:
range(0, 10)
In [41]:
list(range(10))
Out[41]:
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
In [43]:
list(range(3, 8))
Out[43]:
[3, 4, 5, 6, 7]
In [44]:
list(range(0, 20, 2))
Out[44]:
[0, 2, 4, 6, 8, 10, 12, 14, 16, 18]
In [45]:
random_list = ['hello', 76, 'today', 4.3]
In [46]:
type('hello')
Out[46]:
str
In [47]:
type(76)
Out[47]:
int
In [48]:
type(4.3)
Out[48]:
float
In [49]:
type(random_list)
Out[49]:
list
In [50]:
len(random_list)
Out[50]:
4
In [ ]: