2015FALL 作業主頁

2015 計算機程式 w7

以下為 Jupyter notebook 檔案內容:

In [1]:
print("hello")
hello
In [3]:
for i in range(5):
    print("hello "+"group 99")
hello group 99
hello group 99
hello group 99
hello group 99
hello group 99
In [ ]:
 

Group 1 Week 7 Notebook

In [1]:
print("hello")
hello
In [2]:
for i in range(5):
    print("hello "+"group 1")
hello group 1
hello group 1
hello group 1
hello group 1
hello group 1
In [ ]:
 

Group 10 Week 7 Notebook

In [1]:
print("hello")
hello
In [3]:
for i in range(5):
    print("hello "+"group 10")
hello group 10
hello group 10
hello group 10
hello group 10
hello group 10

是否可以同時編輯

In [ ]:
 

Comments