diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9886e1e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.py[cod] diff --git a/README.md b/README.md index 680c8b0..520989f 100644 --- a/README.md +++ b/README.md @@ -1,61 +1,15 @@ -# Python -> 笨方法学 Python——Zed A.Shaw著 +# 笨方法学 Python 学习笔记 +> 《Learn Python the Hard Way》—— Zed A.Shaw 著 +## 介绍 +这是我学习《笨方法学 Python》这本书过程中的笔记,同时我也希望自己熟练的运用 Git,所以创建了这个项目。 -这是我学习《笨方法学 Python》过程中的笔记,同时我也希望自己熟练的运用Git,所以创建了这个项目。 +## 如何使用 +笨方法学,顾名思义就是敲下书中的每一行代码,运行调试。如果遇到问题可以查看对应的笔记查看答案和总结。 -在此期间我会上传我手写的所有代码,学习中的感悟和笔记会在 `.py` 文件中以注释形式展出(已全部完成)。 +`content` 目录下包涵了我边看书边敲的所有代码,以及学习 Python 的感悟和笔记。这些内容均在 `ex习题号.py` 文件中以注释形式展出(已全部完成)。[点击下载《笨方法学 Python》中文版](https://www.gitbook.com/download/pdf/book/flyouting/learn-python-the-hard-way-cn) -如果有什么新的公告会在README中通知大家。 -- [《笨方法学 Python》](https://www.gitbook.com/download/pdf/book/flyouting/learn-python-the-hard-way-cn) - -- 联系我:[点击我的博客](http://www.cnblogs.com/xueweihan/) - -## 2017年1月29日声明6: -今天本来是准备修改 README 中的一个错误,在修改的时候发现——当时创建这个项目的时候,我还不会 Markdown ,还都是用`html`写的。 - -## 2015年6月2日声明5: -我放弃使用‘麒麟系统’了,原因是:毕竟是前辈总结出来的结论,我不能撞南墙在回头。听人劝吃饱饭嘛。 - -现在用ubuntu14.04,已经用了快半个月了,感觉不错,开发的话还是在linux系统下方便。 - -今天把ex52写完了,最后这几个习题我做的有些不认真,因为我下一步要学习flask,所以感觉书上的习题可以赶一赶。 - -总之,所有的习题都写完了。但这才是真正的开始! - -下一步的计划: -- a.学习《编写高质量代码--改善Python程序的91个建议》同样会以这种方式放上来——python_skill。 -- b.学习flask框架,写一个有意义的网站——Learn_flask。 - - -## 2015年5月22日声明4: -我决定用linux系统了,现在用"麒麟系统"(貌似被好多人瞧不起我用麒麟),反正我觉得很适合我。 - -不论如何我现在可以在终端输入中文了,也就是说我的commit可以写成中文信息了。 - - -我决定要把我原来写的ex全部都重看并改写,主要改写:编码格式要改的好看一些(我现在还不确定什么样的代码叫做优雅,所以我只能说改的‘好看’);重写commit信息 - -我把最新的声明写在上面,哈哈,我刚发现这个问题——写在下面不好找。。。 - -## 2015年5月21日声明3: -1. 关于commit的信息,我发现我写的commit -m "xxx"没有什么实际意义,这样很不好,我从今天开始就写英文的commit。 - -2. 每个文件单独提交,不一次提交很多个文件。
- -## 声明2: -我突然发现:我多个py文件上传 写一个commit,这样的话,观看者必须打开ex.py的文件才可以看到内容! - -所以我打算从ex26.py开始每个文件都单个上传,这样写的commit信息有助于让大家快速的找到自己需要的文件! - -结果我发现一个严肃的问题:commit没法写中文!(我认为比较麻烦) god 饶恕我这个败给四级狗的凡人吧! - -所以我决定还是:多个文件一起上传,写一个commit。。。。 - -## 声明1: -这里有ex26考试的文件,原来书中的网址已经不提供下载了,我也是在别的地方找到的。 - -好了,如果前面的东西都跟着做了的话,现在是时候挑战一下了。 - -动手把exercise26.txt放到.py的文件中改错吧。 +## 联系方式 +- [博客](http://www.cnblogs.com/xueweihan/) +- [网站](https://hellogithub.com/) \ No newline at end of file diff --git a/content/.DS_Store b/content/.DS_Store new file mode 100644 index 0000000..9861f4d Binary files /dev/null and b/content/.DS_Store differ diff --git a/PEP8.txt b/content/PEP8.txt similarity index 100% rename from PEP8.txt rename to content/PEP8.txt diff --git a/classTest.py b/content/classTest.py similarity index 100% rename from classTest.py rename to content/classTest.py diff --git a/copy_file.txt b/content/copy_file.txt similarity index 100% rename from copy_file.txt rename to content/copy_file.txt diff --git a/ex1.py b/content/ex1.py similarity index 100% rename from ex1.py rename to content/ex1.py diff --git a/ex10.py b/content/ex10.py similarity index 100% rename from ex10.py rename to content/ex10.py diff --git a/ex11.py b/content/ex11.py similarity index 100% rename from ex11.py rename to content/ex11.py diff --git a/ex12.py b/content/ex12.py similarity index 100% rename from ex12.py rename to content/ex12.py diff --git a/ex13.py b/content/ex13.py similarity index 100% rename from ex13.py rename to content/ex13.py diff --git a/ex14.py b/content/ex14.py similarity index 100% rename from ex14.py rename to content/ex14.py diff --git a/ex15.py b/content/ex15.py similarity index 100% rename from ex15.py rename to content/ex15.py diff --git a/ex15_sample.txt b/content/ex15_sample.txt similarity index 100% rename from ex15_sample.txt rename to content/ex15_sample.txt diff --git a/ex16.py b/content/ex16.py similarity index 100% rename from ex16.py rename to content/ex16.py diff --git a/ex16_sample.txt b/content/ex16_sample.txt similarity index 100% rename from ex16_sample.txt rename to content/ex16_sample.txt diff --git a/ex17.py b/content/ex17.py similarity index 100% rename from ex17.py rename to content/ex17.py diff --git a/ex18.py b/content/ex18.py similarity index 100% rename from ex18.py rename to content/ex18.py diff --git a/ex19.py b/content/ex19.py similarity index 100% rename from ex19.py rename to content/ex19.py diff --git a/ex2.py b/content/ex2.py similarity index 100% rename from ex2.py rename to content/ex2.py diff --git a/ex20.py b/content/ex20.py similarity index 100% rename from ex20.py rename to content/ex20.py diff --git a/ex21.py b/content/ex21.py similarity index 100% rename from ex21.py rename to content/ex21.py diff --git a/ex22.py b/content/ex22.py similarity index 100% rename from ex22.py rename to content/ex22.py diff --git a/ex23.py b/content/ex23.py similarity index 100% rename from ex23.py rename to content/ex23.py diff --git a/ex24.py b/content/ex24.py similarity index 100% rename from ex24.py rename to content/ex24.py diff --git a/ex25.py b/content/ex25.py similarity index 100% rename from ex25.py rename to content/ex25.py diff --git a/ex26.py b/content/ex26.py similarity index 100% rename from ex26.py rename to content/ex26.py diff --git a/ex27.py b/content/ex27.py similarity index 100% rename from ex27.py rename to content/ex27.py diff --git a/ex28.py b/content/ex28.py similarity index 100% rename from ex28.py rename to content/ex28.py diff --git a/ex29.py b/content/ex29.py similarity index 100% rename from ex29.py rename to content/ex29.py diff --git a/ex3.py b/content/ex3.py similarity index 100% rename from ex3.py rename to content/ex3.py diff --git a/ex30.py b/content/ex30.py similarity index 100% rename from ex30.py rename to content/ex30.py diff --git a/ex31.py b/content/ex31.py similarity index 100% rename from ex31.py rename to content/ex31.py diff --git a/ex32.py b/content/ex32.py similarity index 100% rename from ex32.py rename to content/ex32.py diff --git a/ex33.py b/content/ex33.py similarity index 100% rename from ex33.py rename to content/ex33.py diff --git a/ex34.py b/content/ex34.py similarity index 100% rename from ex34.py rename to content/ex34.py diff --git a/ex35.py b/content/ex35.py similarity index 100% rename from ex35.py rename to content/ex35.py diff --git a/ex36.py b/content/ex36.py similarity index 100% rename from ex36.py rename to content/ex36.py diff --git a/ex37.py b/content/ex37.py similarity index 100% rename from ex37.py rename to content/ex37.py diff --git a/ex38.py b/content/ex38.py similarity index 100% rename from ex38.py rename to content/ex38.py diff --git a/ex39.py b/content/ex39.py similarity index 100% rename from ex39.py rename to content/ex39.py diff --git a/ex4.py b/content/ex4.py similarity index 100% rename from ex4.py rename to content/ex4.py diff --git a/ex40.py b/content/ex40.py similarity index 100% rename from ex40.py rename to content/ex40.py diff --git a/ex41.py b/content/ex41.py similarity index 100% rename from ex41.py rename to content/ex41.py diff --git a/ex42.py b/content/ex42.py similarity index 100% rename from ex42.py rename to content/ex42.py diff --git a/ex43.py b/content/ex43.py similarity index 100% rename from ex43.py rename to content/ex43.py diff --git a/ex44a.py b/content/ex44a.py similarity index 100% rename from ex44a.py rename to content/ex44a.py diff --git a/ex44b.py b/content/ex44b.py similarity index 100% rename from ex44b.py rename to content/ex44b.py diff --git a/ex44c.py b/content/ex44c.py similarity index 100% rename from ex44c.py rename to content/ex44c.py diff --git a/ex44d.py b/content/ex44d.py similarity index 100% rename from ex44d.py rename to content/ex44d.py diff --git a/ex44e.py b/content/ex44e.py similarity index 100% rename from ex44e.py rename to content/ex44e.py diff --git a/ex45.py b/content/ex45.py similarity index 100% rename from ex45.py rename to content/ex45.py diff --git "a/ex47/skeleton/bin/350円277円231円351円207円214円346円224円276円351円234円200円350円246円201円347円232円204円350円204円232円346円234円254円" "b/content/ex47/skeleton/bin/350円277円231円351円207円214円346円224円276円351円234円200円350円246円201円347円232円204円350円204円232円346円234円254円" similarity index 100% rename from "ex47/skeleton/bin/350円277円231円351円207円214円346円224円276円351円234円200円350円246円201円347円232円204円350円204円232円346円234円254円" rename to "content/ex47/skeleton/bin/350円277円231円351円207円214円346円224円276円351円234円200円350円246円201円347円232円204円350円204円232円346円234円254円" diff --git "a/ex47/skeleton/docs/350円277円231円351円207円214円346円224円276円346円226円207円346円241円243円" "b/content/ex47/skeleton/docs/350円277円231円351円207円214円346円224円276円346円226円207円346円241円243円" similarity index 100% rename from "ex47/skeleton/docs/350円277円231円351円207円214円346円224円276円346円226円207円346円241円243円" rename to "content/ex47/skeleton/docs/350円277円231円351円207円214円346円224円276円346円226円207円346円241円243円" diff --git a/ex47/skeleton/ex47/__init__.py b/content/ex47/skeleton/ex47/__init__.py similarity index 100% rename from ex47/skeleton/ex47/__init__.py rename to content/ex47/skeleton/ex47/__init__.py diff --git a/ex47/skeleton/ex47/game.py b/content/ex47/skeleton/ex47/game.py similarity index 100% rename from ex47/skeleton/ex47/game.py rename to content/ex47/skeleton/ex47/game.py diff --git a/ex47/skeleton/setup.py b/content/ex47/skeleton/setup.py similarity index 100% rename from ex47/skeleton/setup.py rename to content/ex47/skeleton/setup.py diff --git a/ex47/skeleton/tests/__init__.py b/content/ex47/skeleton/tests/__init__.py similarity index 100% rename from ex47/skeleton/tests/__init__.py rename to content/ex47/skeleton/tests/__init__.py diff --git a/ex47/skeleton/tests/ex47_tests.py b/content/ex47/skeleton/tests/ex47_tests.py similarity index 100% rename from ex47/skeleton/tests/ex47_tests.py rename to content/ex47/skeleton/tests/ex47_tests.py diff --git "a/ex48/skeleton/bin/350円277円231円351円207円214円346円224円276円351円234円200円350円246円201円347円232円204円350円204円232円346円234円254円" "b/content/ex48/skeleton/bin/350円277円231円351円207円214円346円224円276円351円234円200円350円246円201円347円232円204円350円204円232円346円234円254円" similarity index 100% rename from "ex48/skeleton/bin/350円277円231円351円207円214円346円224円276円351円234円200円350円246円201円347円232円204円350円204円232円346円234円254円" rename to "content/ex48/skeleton/bin/350円277円231円351円207円214円346円224円276円351円234円200円350円246円201円347円232円204円350円204円232円346円234円254円" diff --git "a/ex48/skeleton/docs/350円277円231円351円207円214円346円224円276円346円226円207円346円241円243円" "b/content/ex48/skeleton/docs/350円277円231円351円207円214円346円224円276円346円226円207円346円241円243円" similarity index 100% rename from "ex48/skeleton/docs/350円277円231円351円207円214円346円224円276円346円226円207円346円241円243円" rename to "content/ex48/skeleton/docs/350円277円231円351円207円214円346円224円276円346円226円207円346円241円243円" diff --git a/ex48/skeleton/ex48/__init__.py b/content/ex48/skeleton/ex48/__init__.py similarity index 100% rename from ex48/skeleton/ex48/__init__.py rename to content/ex48/skeleton/ex48/__init__.py diff --git a/ex48/skeleton/ex48/lexicon.py b/content/ex48/skeleton/ex48/lexicon.py similarity index 100% rename from ex48/skeleton/ex48/lexicon.py rename to content/ex48/skeleton/ex48/lexicon.py diff --git "a/ex48/skeleton/ex48/345円210円253円344円272円272円345円206円231円347円232円204円346円257円224円346円210円221円347円232円204円345円245円275円lexicon.py" "b/content/ex48/skeleton/ex48/345円210円253円344円272円272円345円206円231円347円232円204円346円257円224円346円210円221円347円232円204円345円245円275円lexicon.py" similarity index 100% rename from "ex48/skeleton/ex48/345円210円253円344円272円272円345円206円231円347円232円204円346円257円224円346円210円221円347円232円204円345円245円275円lexicon.py" rename to "content/ex48/skeleton/ex48/345円210円253円344円272円272円345円206円231円347円232円204円346円257円224円346円210円221円347円232円204円345円245円275円lexicon.py" diff --git a/ex48/skeleton/setup.py b/content/ex48/skeleton/setup.py similarity index 100% rename from ex48/skeleton/setup.py rename to content/ex48/skeleton/setup.py diff --git a/ex48/skeleton/tests/__init__.py b/content/ex48/skeleton/tests/__init__.py similarity index 100% rename from ex48/skeleton/tests/__init__.py rename to content/ex48/skeleton/tests/__init__.py diff --git a/ex48/skeleton/tests/lexicon_tests.py b/content/ex48/skeleton/tests/lexicon_tests.py similarity index 100% rename from ex48/skeleton/tests/lexicon_tests.py rename to content/ex48/skeleton/tests/lexicon_tests.py diff --git "a/ex49/skeleton/bin/350円277円231円351円207円214円346円224円276円351円234円200円350円246円201円347円232円204円350円204円232円346円234円254円" "b/content/ex49/skeleton/bin/350円277円231円351円207円214円346円224円276円351円234円200円350円246円201円347円232円204円350円204円232円346円234円254円" similarity index 100% rename from "ex49/skeleton/bin/350円277円231円351円207円214円346円224円276円351円234円200円350円246円201円347円232円204円350円204円232円346円234円254円" rename to "content/ex49/skeleton/bin/350円277円231円351円207円214円346円224円276円351円234円200円350円246円201円347円232円204円350円204円232円346円234円254円" diff --git "a/ex49/skeleton/docs/350円277円231円351円207円214円346円224円276円346円226円207円346円241円243円" "b/content/ex49/skeleton/docs/350円277円231円351円207円214円346円224円276円346円226円207円346円241円243円" similarity index 100% rename from "ex49/skeleton/docs/350円277円231円351円207円214円346円224円276円346円226円207円346円241円243円" rename to "content/ex49/skeleton/docs/350円277円231円351円207円214円346円224円276円346円226円207円346円241円243円" diff --git a/ex49/skeleton/ex49/__init__.py b/content/ex49/skeleton/ex49/__init__.py similarity index 100% rename from ex49/skeleton/ex49/__init__.py rename to content/ex49/skeleton/ex49/__init__.py diff --git a/ex49/skeleton/ex49/ex49.py b/content/ex49/skeleton/ex49/ex49.py similarity index 100% rename from ex49/skeleton/ex49/ex49.py rename to content/ex49/skeleton/ex49/ex49.py diff --git a/ex49/skeleton/setup.py b/content/ex49/skeleton/setup.py similarity index 100% rename from ex49/skeleton/setup.py rename to content/ex49/skeleton/setup.py diff --git a/ex49/skeleton/tests/__init__.py b/content/ex49/skeleton/tests/__init__.py similarity index 100% rename from ex49/skeleton/tests/__init__.py rename to content/ex49/skeleton/tests/__init__.py diff --git a/ex49/skeleton/tests/ex49_tests.py b/content/ex49/skeleton/tests/ex49_tests.py similarity index 100% rename from ex49/skeleton/tests/ex49_tests.py rename to content/ex49/skeleton/tests/ex49_tests.py diff --git a/ex5.py b/content/ex5.py similarity index 100% rename from ex5.py rename to content/ex5.py diff --git a/ex50/gothonweb/bin/app.py b/content/ex50/gothonweb/bin/app.py similarity index 100% rename from ex50/gothonweb/bin/app.py rename to content/ex50/gothonweb/bin/app.py diff --git a/ex50/gothonweb/gothonweb/__init__.py b/content/ex50/gothonweb/gothonweb/__init__.py similarity index 100% rename from ex50/gothonweb/gothonweb/__init__.py rename to content/ex50/gothonweb/gothonweb/__init__.py diff --git a/ex50/gothonweb/templates/foo.html b/content/ex50/gothonweb/templates/foo.html similarity index 100% rename from ex50/gothonweb/templates/foo.html rename to content/ex50/gothonweb/templates/foo.html diff --git a/ex50/gothonweb/templates/index.html b/content/ex50/gothonweb/templates/index.html similarity index 100% rename from ex50/gothonweb/templates/index.html rename to content/ex50/gothonweb/templates/index.html diff --git a/ex50/gothonweb/tests/__init__.py b/content/ex50/gothonweb/tests/__init__.py similarity index 100% rename from ex50/gothonweb/tests/__init__.py rename to content/ex50/gothonweb/tests/__init__.py diff --git a/ex51/gothonweb/bin/__init__.py b/content/ex51/gothonweb/bin/__init__.py similarity index 100% rename from ex51/gothonweb/bin/__init__.py rename to content/ex51/gothonweb/bin/__init__.py diff --git a/ex51/gothonweb/bin/app.py b/content/ex51/gothonweb/bin/app.py similarity index 100% rename from ex51/gothonweb/bin/app.py rename to content/ex51/gothonweb/bin/app.py diff --git a/ex51/gothonweb/gothonweb/__init__.py b/content/ex51/gothonweb/gothonweb/__init__.py similarity index 100% rename from ex51/gothonweb/gothonweb/__init__.py rename to content/ex51/gothonweb/gothonweb/__init__.py diff --git a/ex51/gothonweb/templates/foo.html b/content/ex51/gothonweb/templates/foo.html similarity index 100% rename from ex51/gothonweb/templates/foo.html rename to content/ex51/gothonweb/templates/foo.html diff --git a/ex51/gothonweb/templates/hello_form.html b/content/ex51/gothonweb/templates/hello_form.html similarity index 100% rename from ex51/gothonweb/templates/hello_form.html rename to content/ex51/gothonweb/templates/hello_form.html diff --git a/ex51/gothonweb/templates/hello_form_laid_out.html b/content/ex51/gothonweb/templates/hello_form_laid_out.html similarity index 100% rename from ex51/gothonweb/templates/hello_form_laid_out.html rename to content/ex51/gothonweb/templates/hello_form_laid_out.html diff --git a/ex51/gothonweb/templates/index.html b/content/ex51/gothonweb/templates/index.html similarity index 100% rename from ex51/gothonweb/templates/index.html rename to content/ex51/gothonweb/templates/index.html diff --git a/ex51/gothonweb/templates/index_laid_out.html b/content/ex51/gothonweb/templates/index_laid_out.html similarity index 100% rename from ex51/gothonweb/templates/index_laid_out.html rename to content/ex51/gothonweb/templates/index_laid_out.html diff --git a/ex51/gothonweb/templates/layout.html b/content/ex51/gothonweb/templates/layout.html similarity index 100% rename from ex51/gothonweb/templates/layout.html rename to content/ex51/gothonweb/templates/layout.html diff --git a/ex51/gothonweb/tests/__init__.py b/content/ex51/gothonweb/tests/__init__.py similarity index 100% rename from ex51/gothonweb/tests/__init__.py rename to content/ex51/gothonweb/tests/__init__.py diff --git a/ex51/gothonweb/tests/app_tests.py b/content/ex51/gothonweb/tests/app_tests.py similarity index 100% rename from ex51/gothonweb/tests/app_tests.py rename to content/ex51/gothonweb/tests/app_tests.py diff --git a/ex51/gothonweb/tests/tools.py b/content/ex51/gothonweb/tests/tools.py similarity index 100% rename from ex51/gothonweb/tests/tools.py rename to content/ex51/gothonweb/tests/tools.py diff --git a/ex52/gothonweb/ReadMe.txt b/content/ex52/gothonweb/ReadMe.txt similarity index 100% rename from ex52/gothonweb/ReadMe.txt rename to content/ex52/gothonweb/ReadMe.txt diff --git a/ex52/gothonweb/bin/__init__.py b/content/ex52/gothonweb/bin/__init__.py similarity index 100% rename from ex52/gothonweb/bin/__init__.py rename to content/ex52/gothonweb/bin/__init__.py diff --git a/ex52/gothonweb/bin/app.py b/content/ex52/gothonweb/bin/app.py similarity index 100% rename from ex52/gothonweb/bin/app.py rename to content/ex52/gothonweb/bin/app.py diff --git a/ex52/gothonweb/gothonweb/__init__.py b/content/ex52/gothonweb/gothonweb/__init__.py similarity index 100% rename from ex52/gothonweb/gothonweb/__init__.py rename to content/ex52/gothonweb/gothonweb/__init__.py diff --git a/ex52/gothonweb/gothonweb/map.py b/content/ex52/gothonweb/gothonweb/map.py similarity index 100% rename from ex52/gothonweb/gothonweb/map.py rename to content/ex52/gothonweb/gothonweb/map.py diff --git a/ex52/gothonweb/templates/layout.html b/content/ex52/gothonweb/templates/layout.html similarity index 100% rename from ex52/gothonweb/templates/layout.html rename to content/ex52/gothonweb/templates/layout.html diff --git a/ex52/gothonweb/templates/show_room.html b/content/ex52/gothonweb/templates/show_room.html similarity index 100% rename from ex52/gothonweb/templates/show_room.html rename to content/ex52/gothonweb/templates/show_room.html diff --git a/ex52/gothonweb/templates/you_died.html b/content/ex52/gothonweb/templates/you_died.html similarity index 100% rename from ex52/gothonweb/templates/you_died.html rename to content/ex52/gothonweb/templates/you_died.html diff --git a/ex52/gothonweb/tests/__init__.py b/content/ex52/gothonweb/tests/__init__.py similarity index 100% rename from ex52/gothonweb/tests/__init__.py rename to content/ex52/gothonweb/tests/__init__.py diff --git a/ex52/gothonweb/tests/app_tests.py b/content/ex52/gothonweb/tests/app_tests.py similarity index 100% rename from ex52/gothonweb/tests/app_tests.py rename to content/ex52/gothonweb/tests/app_tests.py diff --git a/ex52/gothonweb/tests/map_tests.py b/content/ex52/gothonweb/tests/map_tests.py similarity index 100% rename from ex52/gothonweb/tests/map_tests.py rename to content/ex52/gothonweb/tests/map_tests.py diff --git a/ex52/gothonweb/tests/tools.py b/content/ex52/gothonweb/tests/tools.py similarity index 100% rename from ex52/gothonweb/tests/tools.py rename to content/ex52/gothonweb/tests/tools.py diff --git a/ex6.py b/content/ex6.py similarity index 100% rename from ex6.py rename to content/ex6.py diff --git a/ex7.py b/content/ex7.py similarity index 100% rename from ex7.py rename to content/ex7.py diff --git a/ex8.py b/content/ex8.py similarity index 100% rename from ex8.py rename to content/ex8.py diff --git a/ex9.py b/content/ex9.py similarity index 100% rename from ex9.py rename to content/ex9.py diff --git a/exercise26.txt b/content/exercise26.txt similarity index 100% rename from exercise26.txt rename to content/exercise26.txt diff --git a/hello.py b/content/hello.py similarity index 100% rename from hello.py rename to content/hello.py diff --git a/how_for_two_list.py b/content/how_for_two_list.py similarity index 100% rename from how_for_two_list.py rename to content/how_for_two_list.py diff --git a/projects/skeleton/NAME/__init__.py b/content/projects/skeleton/NAME/__init__.py similarity index 100% rename from projects/skeleton/NAME/__init__.py rename to content/projects/skeleton/NAME/__init__.py diff --git "a/projects/skeleton/bin/350円277円231円351円207円214円346円224円276円351円234円200円350円246円201円347円232円204円350円204円232円346円234円254円" "b/content/projects/skeleton/bin/350円277円231円351円207円214円346円224円276円351円234円200円350円246円201円347円232円204円350円204円232円346円234円254円" similarity index 100% rename from "projects/skeleton/bin/350円277円231円351円207円214円346円224円276円351円234円200円350円246円201円347円232円204円350円204円232円346円234円254円" rename to "content/projects/skeleton/bin/350円277円231円351円207円214円346円224円276円351円234円200円350円246円201円347円232円204円350円204円232円346円234円254円" diff --git "a/projects/skeleton/docs/350円277円231円351円207円214円346円224円276円346円226円207円346円241円243円" "b/content/projects/skeleton/docs/350円277円231円351円207円214円346円224円276円346円226円207円346円241円243円" similarity index 100% rename from "projects/skeleton/docs/350円277円231円351円207円214円346円224円276円346円226円207円346円241円243円" rename to "content/projects/skeleton/docs/350円277円231円351円207円214円346円224円276円346円226円207円346円241円243円" diff --git a/projects/skeleton/setup.py b/content/projects/skeleton/setup.py similarity index 100% rename from projects/skeleton/setup.py rename to content/projects/skeleton/setup.py diff --git a/projects/skeleton/tests/NAME_tests.py b/content/projects/skeleton/tests/NAME_tests.py similarity index 100% rename from projects/skeleton/tests/NAME_tests.py rename to content/projects/skeleton/tests/NAME_tests.py diff --git a/projects/skeleton/tests/__init__.py b/content/projects/skeleton/tests/__init__.py similarity index 100% rename from projects/skeleton/tests/__init__.py rename to content/projects/skeleton/tests/__init__.py diff --git a/test.py b/content/test.py similarity index 100% rename from test.py rename to content/test.py diff --git a/ex47/skeleton/ex47/__init__.pyc b/ex47/skeleton/ex47/__init__.pyc deleted file mode 100644 index 9827b86..0000000 Binary files a/ex47/skeleton/ex47/__init__.pyc and /dev/null differ diff --git a/ex47/skeleton/ex47/game.pyc b/ex47/skeleton/ex47/game.pyc deleted file mode 100644 index e3c4871..0000000 Binary files a/ex47/skeleton/ex47/game.pyc and /dev/null differ diff --git a/ex47/skeleton/tests/__init__.pyc b/ex47/skeleton/tests/__init__.pyc deleted file mode 100644 index 965b8b8..0000000 Binary files a/ex47/skeleton/tests/__init__.pyc and /dev/null differ diff --git a/ex47/skeleton/tests/ex47_tests.pyc b/ex47/skeleton/tests/ex47_tests.pyc deleted file mode 100644 index 995c57b..0000000 Binary files a/ex47/skeleton/tests/ex47_tests.pyc and /dev/null differ diff --git a/ex49/skeleton/ex49/__init__.pyc b/ex49/skeleton/ex49/__init__.pyc deleted file mode 100644 index 689e9c2..0000000 Binary files a/ex49/skeleton/ex49/__init__.pyc and /dev/null differ diff --git a/ex49/skeleton/ex49/ex49.pyc b/ex49/skeleton/ex49/ex49.pyc deleted file mode 100644 index c7cac7e..0000000 Binary files a/ex49/skeleton/ex49/ex49.pyc and /dev/null differ diff --git a/ex49/skeleton/tests/__init__.pyc b/ex49/skeleton/tests/__init__.pyc deleted file mode 100644 index 0f26f47..0000000 Binary files a/ex49/skeleton/tests/__init__.pyc and /dev/null differ diff --git a/ex49/skeleton/tests/ex49_tests.pyc b/ex49/skeleton/tests/ex49_tests.pyc deleted file mode 100644 index 8ceef4c..0000000 Binary files a/ex49/skeleton/tests/ex49_tests.pyc and /dev/null differ diff --git a/ex50/gothonweb/bin/app.pyc b/ex50/gothonweb/bin/app.pyc deleted file mode 100644 index fb324e2..0000000 Binary files a/ex50/gothonweb/bin/app.pyc and /dev/null differ diff --git a/ex51/gothonweb/bin/__init__.pyc b/ex51/gothonweb/bin/__init__.pyc deleted file mode 100644 index e998ecd..0000000 Binary files a/ex51/gothonweb/bin/__init__.pyc and /dev/null differ diff --git a/ex51/gothonweb/bin/app.pyc b/ex51/gothonweb/bin/app.pyc deleted file mode 100644 index 727c671..0000000 Binary files a/ex51/gothonweb/bin/app.pyc and /dev/null differ diff --git a/ex51/gothonweb/gothonweb/__init__.pyc b/ex51/gothonweb/gothonweb/__init__.pyc deleted file mode 100644 index 7dc0b26..0000000 Binary files a/ex51/gothonweb/gothonweb/__init__.pyc and /dev/null differ diff --git a/ex51/gothonweb/tests/__init__.pyc b/ex51/gothonweb/tests/__init__.pyc deleted file mode 100644 index 1a5b295..0000000 Binary files a/ex51/gothonweb/tests/__init__.pyc and /dev/null differ diff --git a/ex51/gothonweb/tests/app_tests.pyc b/ex51/gothonweb/tests/app_tests.pyc deleted file mode 100644 index 7debc26..0000000 Binary files a/ex51/gothonweb/tests/app_tests.pyc and /dev/null differ diff --git a/ex51/gothonweb/tests/tools.pyc b/ex51/gothonweb/tests/tools.pyc deleted file mode 100644 index c4edf13..0000000 Binary files a/ex51/gothonweb/tests/tools.pyc and /dev/null differ diff --git a/ex52/gothonweb/bin/__init__.pyc b/ex52/gothonweb/bin/__init__.pyc deleted file mode 100644 index e998ecd..0000000 Binary files a/ex52/gothonweb/bin/__init__.pyc and /dev/null differ diff --git a/ex52/gothonweb/bin/app.pyc b/ex52/gothonweb/bin/app.pyc deleted file mode 100644 index b7dcdb1..0000000 Binary files a/ex52/gothonweb/bin/app.pyc and /dev/null differ diff --git a/ex52/gothonweb/gothonweb/__init__.pyc b/ex52/gothonweb/gothonweb/__init__.pyc deleted file mode 100644 index 7dc0b26..0000000 Binary files a/ex52/gothonweb/gothonweb/__init__.pyc and /dev/null differ diff --git a/ex52/gothonweb/gothonweb/map.pyc b/ex52/gothonweb/gothonweb/map.pyc deleted file mode 100644 index c7eaa4f..0000000 Binary files a/ex52/gothonweb/gothonweb/map.pyc and /dev/null differ diff --git a/ex52/gothonweb/tests/__init__.pyc b/ex52/gothonweb/tests/__init__.pyc deleted file mode 100644 index 1a5b295..0000000 Binary files a/ex52/gothonweb/tests/__init__.pyc and /dev/null differ diff --git a/ex52/gothonweb/tests/app_tests.pyc b/ex52/gothonweb/tests/app_tests.pyc deleted file mode 100644 index 401b112..0000000 Binary files a/ex52/gothonweb/tests/app_tests.pyc and /dev/null differ diff --git a/ex52/gothonweb/tests/map_tests.pyc b/ex52/gothonweb/tests/map_tests.pyc deleted file mode 100644 index 779e023..0000000 Binary files a/ex52/gothonweb/tests/map_tests.pyc and /dev/null differ diff --git a/ex52/gothonweb/tests/tools.pyc b/ex52/gothonweb/tests/tools.pyc deleted file mode 100644 index c4edf13..0000000 Binary files a/ex52/gothonweb/tests/tools.pyc and /dev/null differ

AltStyle によって変換されたページ (->オリジナル) /