今天遇到了Unix环境下的一个常见代码:
!cat ch06/ex1.csv
想把这个代码搬到Windows环境下
操作也很简单:
!type ch06\ex1.csv
a,b,c,d,message
1,2,3,4,hello
5,6,7,8,world
9,10,11,12,foo
这是在ipython notebook环境下的代码
注意:
感叹号
斜杠和反斜杠
找上级目录也很简单:
!type ..\ch06\ex1.csv
a,b,c,d,message
1,2,3,4,hello
5,6,7,8,world
9,10,11,12,foo