ค่าทส่ี ่งกลบั : Topdown (option) กาหนดใหเ้ ป็น True เมอ่ื ตอ้ งการแสดงทรจี ากบน ตวั อยา่ ง: ลงล่าง และ False แสดงจากล่างขน้ึ บน Onerror แสดงความผดิ พลาด ขณะแสดงไดเรคทรอร่ี Followlinks เมอ่ื กาหนดเป็น True จะแสดง symlinks ไมม่ ี import os for root, dirs, files in os.walk(\".\", topdown=False): for name in files: print(os.path.join(root, name)) for name in dirs: print(os.path.join(root, name)) เอาตพ์ ตุ : .\\CalArea\\__pycache__\\CalAreaRectangle.cpython-34.pyc .\\CalArea\\__pycache__\\CalAreaTriangle.cpython-34.pyc OUTPUT … os.write() : เขยี นขอ้ มลู ลงแฟ้ม รปู แบบคาสงั่ : os.write(fd, str) พารามเิ ตอร:์ fd คอื File descriptor สาหรบั ใชอ้ า้ งองิ ไปยงั แฟ้มจรงิ str สตรงิ หรอื สายอกั ขระทต่ี อ้ งการเขยี นลงแฟ้ม ค่าทส่ี ่งกลบั : จานวนขอ้ มลู ทไ่ี ดเ้ ขยี นลงแฟ้มแลว้ (มหี น่วยเป็นไบต)์ ตวั อยา่ ง: import os, sys # Open file fd = os.open(\"TEST.txt\",os.O_RDWR|os.O_CREAT) # Writing text ret = os.write(fd,'This is test') # ret consists of number of bytes written to TEST.txt print (\"the number of bytes written: \") print (ret) print (\"written successfully\") # Close opened file os.close(fd) print (\"Closed the file successfully!!\") เอาตพ์ ตุ : OUTPUT the number of bytes written: 12 written successfully Closed the file successfully!! หน้า 630
บรรณานุกรม 1. Alchin M, Pro Python, Apress, June 2010. 2. Allen Downey, J. E. a. C. M., Think Python: How to Think Like a Computer Scientist. Needham, Massachusetts, Green Tea Press, June 2014. 3. Allen, S., \"Python.\" Retrieved April 12, 2014, from http://www.dotnetperls.com/python. 4. applicatio d., \"An Introduction To Tkinter.\" Retrieved June 19, 2014, from http://effbot.org/tkinterbook/. 5. B.P, A. K., Learning Maths & Science using Python and writing them in LATEX. New Delhi 110067, Inter University Accelerator Centre, June 2010. 6. Beazley, D. M., Python Essential Reference, 4th Edition, Addison-Wesley Professional, July 2009. 7. Central, P., \"Python Programming Guides and Tutorials.\" Retrieved May 22, 2014, from http://www.pythoncentral.io/. 8. Chun, W., Core Python Programming, 2nd Edition, Prentice Hall, September 2006. 9. Course, P., \"Python3 Tutorial.\" Retrieved 15 February, 2014, from http://www.python-course.eu/. 10. Curtin, B., \"Python 3 Porting Guide.\" Retrieved May 15, 2014, from http://docs.pythonsprints.com/python3_porting/py-porting.html. 11. Floyd, P., Dive Into Python 3, 2nd edition, Apress, November 2009. 12. Foundation, P. S., \" Python 3.4.2 Documentation.\" Retrieved December 2013, 2014, from https://docs.python.org/3/contents.html. 13. Foundation, P. S., \"Python v3.1.5 documentation.\" Retrieved January 2, 2014, from https://docs.python.org/3.1/index.html. 14. Foundation, P. S., \"Python Documentation by Version.\" Retrieved January 6, 2014, from https://www.python.org/doc/versions/. 15. Grayson, J. E., Python and Tkinter Programming. Lafayette Place, Greenwich, the United States of America, Manning Publications Co., 2000. 16. Grayson, J. E., Python and Tkinter Programming. the United States of America, Manning Publications, January 2000. หน้า 631
17. Halterman, R. L., LEARNING TO PROGRAM WITH PYTHON, Southern Adventist University, 2011. 18. Hetland, M. L., Beginning Python: From Novice to Professional, 2nd edition, Apress, 2005 19. Hong, K. (2014). \"PYTHON HOME 2014.\" Retrieved June 15, 2014, from http://www.bogotobogo.com/python/pytut.php. 20. java2s.com, \"Python examples.\" Retrieved March 18, 2014, from http://www.java2s.com/Code/Python/CatalogPython.htm. 21. John Goerzen , B. R., Foundations of Python Network Programming, 2nd edition, Apress, December 2010. 22. Katja Schuerer, C. M., Catherine Letondal, Eric Deveaud, Introduction to Programming using Python, Pasteur Institute, February 2008. 23. Kiusalaas, J., Numerical Methods in Engineering with Python, 2nd Edition, Cambridge University Press, August 2014. 24. Lamber, K. A., Fundamentals of Python: From First Programs Through Data Structures, Cengage Learning, March 2011. 25. Lott, S. F., Building Skills in Python, April 2010. 26. Lundh, F., \"An Introduction to Tkinter.\" Retrieved May 5, 2014, from http://www.scoberlin.de/content/media/http/informatik/tkinter/. 27. Matloff, N., Introduction to Network Programming with Python, University of California, Davis, May 2009. 28. Payne, J., Beginning Python: Using Python 2.6 and Python 3.1, February 2010. 29. Phillips, D., Python 3 Object Oriented Programming, Packt Publishing, July 2010. 30. Pimpler, E., Programming ArcGIS 10.1 with Python Cookbook, Packt Publishing (www.packtpub.com), 2013. 31. Pimpler, E., Programming ArcGIS 10.1 with Python Cookbook, Packt Publishing, February 2013. 32. Project, T. G., \"The Python GTK+ 3 Tutorial.\" Retrieved March, 2014, from http://python-gtk-3-tutorial.readthedocs.org/en/latest/index.html. 33. Roseman, M., \"TkDocs.\" Retrieved May 28, 2014, from http://www.tkdocs.com/tutorial/. หน้า 632
34. Sentance, S., \"Python School.\" Retrieved April 25, 2014, from http://www.pythonschool.net/. 35. Shaw, Z. A., \"Learn Python the Hard Way.\" 3rd Edition. Retrieved May 20, 2014, from http://learnpythonthehardway.org/book/index.html. 36. Shipman, J. W., Tkinter 8.5 reference: a GUI for Python. New Mexico, New Mexico Institute of Mining and Technology, 2013. 37. Summerfield, M., Programming in Python 3: A Complete Introduction to the Python Language, 2nd edition, Addison-Wesley Professional, November 2009. 38. Summerfield, M., Rapid GUI Programming with Python and Qt, Prentice Hal, October 2007. 39. Thoreau, H. D., Introduction to Computers, Internet and World Wide Web, Deitel & Associates, Inc, December 2005. 40. Tim Hall , J.-P. S., Python 3 for Absolute Beginners, Apress, October 2009. 41. Tiponut, S. V., Python Network Programming. Romania, Technical University Timisoara, 2001. 42. Tutorialspoint, \"Python Tutorial.\" Retrieved May 17, 2014, from http://www.tutorialspoint.com/python/. 43. Wikipedia, \"History of Python.\" Retrieved November 12, 2013, from http://en.wikipedia.org/wiki/History_of_Python. 44. Zelle, J. M., Python Programming: An Introduction to Computer Science, Franklin Beedle & Associates, December 2003. หน้า 633
ดชั นีคำศพั ท์ 3 19 กระบวนการทางาน (Documentation/Procedure) 64 การจดั การหน่วยความจาอตั โนมตั ิ (Garbage collection) 64 การประกาศตวั แปร (Variable declaration) 65 กาหนดค่าใหต้ วั แปร (Assigning values to variables) 70 การใชต้ วั แปร (Use the variable) 114 การเปลย่ี นคา่ ตวั แปร (Forcing a number type) 130 การควบคมุ ทศิ ทางแบบเลอื กทา (Decisions, Choice, Selection) 156 การวนซ้าแบบไมร่ จู้ บ (The Infinite Loop) 157 การประกาศฟังชนั (Defining a function) 158 การเรยี กใชฟ้ ังชนั (Calling a function) 166 การส่งผ่านอารก์ วิ เมนต์ (Pass by reference vs value) 171 การสรา้ งฟังก์ชนั โดยไม่ระบุชอ่ื (The Anonymous functions: lambda) 175 การสง่ ค่ากลบั จากฟังชนั (The return statement) 178 การส่งคา่ กลบั จากฟังชนั หลายคา่ (Returning multiple values) 193 การเรยี กตวั เอง หรอื การเวยี นเกดิ (Recursion) 197 การจดั การขอ้ ผดิ พลาด (Exceptions handeling) 207 การตรวจจบั ความผดิ พลาดแบบหลาย Excetions (Multiple exceptions) 208 การสรา้ ง Exception ขน้ึ มาใชง้ านเอง (User-defined exceptions) 214 การยนื ยนั ในสมมตฐิ าน (Assertions) 216 การเปิดแฟ้ม (Opening files) 231 การปิดแฟ้ม (Opening files) 237 การโปรแกรมเชงิ วตั ถุ (Object-Oriented Programming Concept: OOP) 237 การหอ่ หมุ้ ขอ้ มลู /การซอ่ นขอ้ มลู (Encapsulation/Data hinding) 238 การสบื ทอด (Inheritance) 239 การพอ้ งรปู (Polymorphism) 246 การสรา้ งคลาส (Creating class) 248 การสรา้ งอนิ สแตนซข์ องวตั ถุ (Creating instance objects) 251 การเขา้ ถงึ แอตทรบิ วิ ต์และเมธอด (Accessing attributes and methods) 253 การลบวตั ถุทสี รา้ งขน้ึ (Destroying objects) 260 การสบื ทอดคุณสมบตั ขิ องคลาส (Class Inheritance) การโอเวอรไ์ รดด์ ง้ิ เมธอด (Overriding methods) หน้า 634
การโอเวอรโ์ หลดดง้ิ เมธอด (Overloading method/function) 263 การโอเวอรโ์ หลดตวั ดาเนินการ (Overloading operators) 265 การหอ่ หมุ้ ขอ้ มลู /การซอ่ นขอ้ มลู (Encapsulation/Data hinding) 268 การเพมิ่ ระเบยี น (Insert) 313 การลบระเบยี น (Delete) 316 การปรบั ปรงุ ระเบยี น (Update) 315 การอ่านระเบยี น (Read) 314 การยนื ยนั คาสงั่ (Commit) 317 การยกเลกิ การทางานของคาสงั่ ก่อนหน้า (Rollback) 317 การจดั เรยี งขอ้ มลู (Sorting) 421 การคน้ หาขอ้ มลู (Searching) 431 การพรอ็ ตกราฟ (Plot Graph) 469 การจดั การรปู ทรงเลขาคณติ ใหก้ บั Widgets (Geometry management) 483 การจดั การกบั เหตุกราณ์ต่างๆ (Event Handling) 483 การตอบสนองต่อเหตุการณ์ทเ่ี กดิ ขน้ึ (Command Callbacks) 483 การจดั วาง Widgets ดว้ ยเลขาคณติ (Geometry management) 487 เกมส์ Tic-Tac-Toe 559 ขอ้ มลู /สารสนเทศ (Data/Information) 3 ขอ้ ผดิ พลาดทางไวยากรณ์ (Syntax error) 7 ขนั้ ตอนการพฒั นาโปรแกรม (Software development) 8 ขอ้ มลู พน้ื ฐาน (Basic data types) 66 ขอ้ มลู ตวั เลข (Numeric) 66 ขอ้ มลู ชนิดสายอกั ษร (String) 70 ขอ้ มลู เชงิ ประกอบ (Composite data types) 77 ขอบเขตของตวั แปร (Scope of variables) 176 ขอ้ ผดิ พลาด (Exceptions) 192 ขอ้ ความ (Message) 526 คอมไพเลอร์ (Compiler) 6 โครงสรา้ งการทางานแบบตามลาดบั (Sequence) 11 โครงสรา้ งการทางานแบบเลอื กตดั สนิ ใจ หรอื เงอ่ื นไข (Decision หรอื Selection) 11 โครงสรา้ งการทางานแบบการทาซ้า (Repetition หรอื Loop) 13 คาสงั่ ชว่ ยเหลอื help () 62 หน้า 635
ค่าคงท่ี (Literal constants) 63 คาสงวน (Reserved word, Keyword) 66 ควบคุมทศิ ทางแบบวนรอบ หรอื ทาซ้า (Loop, Iteration) 128 คาสงั่ break 138 คาสงั่ continue 140 คาสงั่ pass 141 คอนสตรกั เตอร์ (Constructor) 239 เคอรเ์ ซอร์ (Cursors) 496 เครอ่ื งคดิ เลขขนาดเลก็ (Mini-Calculator) 554 จานวนตรรกะ (Boolean) 69 จานวนเชงิ ซอ้ น (Complex numbers) 69 ชนิดขอ้ มลู (Data types) 66 ซอฟตแ์ วรร์ ะบบ (System software) 2 ซอฟตแ์ วรท์ ค่ี วบคุมอุปกรณ์ฮารด์ แวรโ์ ดยตรง (Device driver program) 2 ซอฟตแ์ วรป์ ระยกุ ต์ (Application software) 3 ซอฟตแ์ วรเ์ สรี (Open source software) 19 เซต (Sets) 90 ซงิ โครไนซเ์ ธรด (Threads Synchronization) 351 ฐานขอ้ มลู (Database) 306 ดกิ ชนั นารี (Dictionary) 86 ดคี อนสตรกั เตอร์ (Deconstructor) 239 ตวั แปร (Variable) 63 ตวั เลขทศนยิ ม หรอื จานวนจรงิ (Floating-Point numbers) 68 ตวั ดาเนินการพเิ ศษเกย่ี วกบั สตรงิ (String special operators) 76 ตวั ดาเนนิ การพน้ื ฐานของลสิ ต์ (Basic list operations) 79 ตวั แปรชนดิ เปลย่ี นแปลงขอ้ มลู ไดต้ ลอดเวลา (Mutable) 86 ตวั ดาเนินการทใ่ี ชเ้ ปรยี บเทยี บสาหรบั เซต (Set comparison operators) 94 หน้า 636
ตวั ดาเนนิ การ (Operator) 100 ตวั ถกู ดาเนินการ (Operand) 100 ตวั ดาเนนิ การทางคณติ ศาสตร์ (Arithmetic Operators) 100 ตวั ดาเนินการทางดา้ นการเปรยี บเทยี บ (Comparison Operators) 102 ตวั ดาเนินการกาหนดค่า (Assignment Operators) 103 ตวั ดาเนินการระดบั บติ (Bitwise Operators) 105 ตวั ดาเนนิ การทางตรรกศาสตร์ (Logical Operators) 108 ตวั ดาเนินงานการเป็นสมาชกิ (Membership Operators) 109 ตวั ดาเนนิ การเอกลษั ณ์ (Identity Operators) 110 ทพั เพลิ (Tuples) 81 เธรดและโพรเซส (Threads and Processes) 345 เธรด (Thread) 346 นพิ จน์ (Expression) 100 แนวคดิ เชงิ วตั ถุ (Object) 232 นิพจน์ปกติ (Regular Expression: Regex) 272 นาเขา้ ขอ้ มลู (Entry) 512 บคุ คลำกร (Peopleware) 3 บติ แมป (Bitmaps) 495 โปรแกรมคอมพวิ เตอร์ (Computer programs) 2 ป่มุ (Button) 501 ผงั งาน (Flowchart) 9 ผงั งานระบบ (System flowchart) 9 ผงั งานโปรแกรม (Program flowchart) 9 ผลต่าง (Difference) 92 ผลต่างสมมาตร (Symmetric difference) 92 ผหู้ ่อหุม้ (Wrapper) 457 ผนื ผา้ ใบ (Canvas) 504 หน้า 637
แพค็ เกจ (Packages) 189 Process (โพรเซส) 345 ฟังกช์ นั (Function) 155 แฟ้มขอ้ มลู (File) 213 ฟิลด์ (Field) 306 เฟรมขอ้ มลู (Data frame) 389 ฟังกช์ นั อตั ราการเตบิ โต (Growth-rate functions) 415 เฟรม (Frame) 498 ภาษาคอมพวิ เตอร์ (Computer languages) 3 ภาษาเครอ่ื ง (Machine language) 3 ภาษาระดบั ต่า (Low level language) 3 ภาษาแอสแซมบลี (Assembly language) 4 ภาษาระดบั สงู (High level language) 4 ภาษาระดบั สงู มาก (Very high-level language) 6 ภาษาธรรมชาติ (Natural languages) 7 ภาษากาว (Glue language) 20 ภาษาสครปิ ต์ (Scripting language) 22 โมดลู (Module) 183 เมธอด (Method) 239 ยเู นียน (Union) 92 ยกเลกิ การเชอ่ื มต่อกบั ฐานขอ้ มลู (Disconnect) 318 ระบบปฏบิ ตั กิ าร (Operating system) 2 รหสั เทยี ม หรอื ซโู ดโคด้ (Pseudo Code) 14 รหสั ควบคุม (Escape Characters) 75 ระเบยี น (Record) 306 ระบบสารสนเทศภมู ศิ าสตร์ (Geographic Information System: GIS ) 377 หน้า 638
เลขทศนยิ ม (Floating-point formatting) 59 เลขจานวนเตม็ (Integers) 67 ลาดบั ความสาคญั ของตวั ดาเนนิ การ (Operators Precedence) 111 ลปู ซอ้ น (Nested loops) 152 เลเยอร์ (Layers) 390 เลเบลหรอื ป้ายช่อื (Label) 516 ไวยากรณ์ของภาษา (Syntax) 6 วตั ถุ หรอื อ๊อปเจก็ ต์ (Object) 51 เวบ็ (Web) 319 เวลาทใ่ี ชใ้ นการประมวลผล (Processing Time) 409 สายอกั ขระ (String) 56 สญั ลกั ษณ์ทใ่ี ชใ้ นการแปลงสายอกั ขระ หรอื สตรงิ (String formatting operator) 57 อุปกรณ์ฮารด์ แวร์ (Hardware) 2 แอสเซมเบลอร์ (Assembler) 4 ออปเจกตโ์ ปรแกรม (Object program) 7 เอก็ ซซ์ คี วิ ทโ์ ปรแกรม (Execute program) 7 อนิ เทอรพ์ รเี ตอร์ (Interpreter) 7 อนิ เตอรเ์ ซคชนั (Intersection) 92 อนิ สแตนซ์ (Instance) 237 แอตทรบิ วิ ต/์ พรอปเพอรต์ สี /์ ดาตา้ (Attributes/Properties/Data) 239 แอตทรบิ วิ ตช์ นดิ built-in ในคลาส (Built-In class attributes) 249 ไอพแี อดเดรส (IP Address) 357 อลั กอรทิ มึ (Algorithm) 409 อตั ราการเตบิ โต Big-O 418 อาเรยแ์ ละเมทรกิ ซ์ (Array and Matrix) 461 หน้า 639
Search
Read the Text Version
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 118
- 119
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171
- 172
- 173
- 174
- 175
- 176
- 177
- 178
- 179
- 180
- 181
- 182
- 183
- 184
- 185
- 186
- 187
- 188
- 189
- 190
- 191
- 192
- 193
- 194
- 195
- 196
- 197
- 198
- 199
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209
- 210
- 211
- 212
- 213
- 214
- 215
- 216
- 217
- 218
- 219
- 220
- 221
- 222
- 223
- 224
- 225
- 226
- 227
- 228
- 229
- 230
- 231
- 232
- 233
- 234
- 235
- 236
- 237
- 238
- 239
- 240
- 241
- 242
- 243
- 244
- 245
- 246
- 247
- 248
- 249
- 250
- 251
- 252
- 253
- 254
- 255
- 256
- 257
- 258
- 259
- 260
- 261
- 262
- 263
- 264
- 265
- 266
- 267
- 268
- 269
- 270
- 271
- 272
- 273
- 274
- 275
- 276
- 277
- 278
- 279
- 280
- 281
- 282
- 283
- 284
- 285
- 286
- 287
- 288
- 289
- 290
- 291
- 292
- 293
- 294
- 295
- 296
- 297
- 298
- 299
- 300
- 301
- 302
- 303
- 304
- 305
- 306
- 307
- 308
- 309
- 310
- 311
- 312
- 313
- 314
- 315
- 316
- 317
- 318
- 319
- 320
- 321
- 322
- 323
- 324
- 325
- 326
- 327
- 328
- 329
- 330
- 331
- 332
- 333
- 334
- 335
- 336
- 337
- 338
- 339
- 340
- 341
- 342
- 343
- 344
- 345
- 346
- 347
- 348
- 349
- 350
- 351
- 352
- 353
- 354
- 355
- 356
- 357
- 358
- 359
- 360
- 361
- 362
- 363
- 364
- 365
- 366
- 367
- 368
- 369
- 370
- 371
- 372
- 373
- 374
- 375
- 376
- 377
- 378
- 379
- 380
- 381
- 382
- 383
- 384
- 385
- 386
- 387
- 388
- 389
- 390
- 391
- 392
- 393
- 394
- 395
- 396
- 397
- 398
- 399
- 400
- 401
- 402
- 403
- 404
- 405
- 406
- 407
- 408
- 409
- 410
- 411
- 412
- 413
- 414
- 415
- 416
- 417
- 418
- 419
- 420
- 421
- 422
- 423
- 424
- 425
- 426
- 427
- 428
- 429
- 430
- 431
- 432
- 433
- 434
- 435
- 436
- 437
- 438
- 439
- 440
- 441
- 442
- 443
- 444
- 445
- 446
- 447
- 448
- 449
- 450
- 451
- 452
- 453
- 454
- 455
- 456
- 457
- 458
- 459
- 460
- 461
- 462
- 463
- 464
- 465
- 466
- 467
- 468
- 469
- 470
- 471
- 472
- 473
- 474
- 475
- 476
- 477
- 478
- 479
- 480
- 481
- 482
- 483
- 484
- 485
- 486
- 487
- 488
- 489
- 490
- 491
- 492
- 493
- 494
- 495
- 496
- 497
- 498
- 499
- 500
- 501
- 502
- 503
- 504
- 505
- 506
- 507
- 508
- 509
- 510
- 511
- 512
- 513
- 514
- 515
- 516
- 517
- 518
- 519
- 520
- 521
- 522
- 523
- 524
- 525
- 526
- 527
- 528
- 529
- 530
- 531
- 532
- 533
- 534
- 535
- 536
- 537
- 538
- 539
- 540
- 541
- 542
- 543
- 544
- 545
- 546
- 547
- 548
- 549
- 550
- 551
- 552
- 553
- 554
- 555
- 556
- 557
- 558
- 559
- 560
- 561
- 562
- 563
- 564
- 565
- 566
- 567
- 568
- 569
- 570
- 571
- 572
- 573
- 574
- 575
- 576
- 577
- 578
- 579
- 580
- 581
- 582
- 583
- 584
- 585
- 586
- 587
- 588
- 589
- 590
- 591
- 592
- 593
- 594
- 595
- 596
- 597
- 598
- 599
- 600
- 601
- 602
- 603
- 604
- 605
- 606
- 607
- 608
- 609
- 610
- 611
- 612
- 613
- 614
- 615
- 616
- 617
- 618
- 619
- 620
- 621
- 622
- 623
- 624
- 625
- 626
- 627
- 628
- 629
- 630
- 631
- 632
- 633
- 634
- 635
- 636
- 637
- 638
- 639
- 640
- 641
- 642
- 643
- 644
- 645
- 646
- 647
- 648
- 649
- 650
- 651
- 652
- 653
- 654
- 655
- 656
- 657
- 658
- 659
- 660
- 661
- 1 - 50
- 51 - 100
- 101 - 150
- 151 - 200
- 201 - 250
- 251 - 300
- 301 - 350
- 351 - 400
- 401 - 450
- 451 - 500
- 501 - 550
- 551 - 600
- 601 - 650
- 651 - 661
Pages: