วันพฤหัสบดีที่ 23 กุมภาพันธ์ พ.ศ. 2555
วันจันทร์ที่ 9 มกราคม พ.ศ. 2555
python ide online in Codecademy
ช่วงนี้กระแส Codecademy มาแรงมาก จากเดิมมีแต่ภาษา javascript ทางเวบเลยเพิ่มภา๋ษาอื่นเพิ่มเติมได้แก่ Ruby และ Python แต่ทั้งสองภาษาอยู่ในสถานะ Lab ยังไม่มี Course ต้องรอสักพัก ถ้ามี Course ของ Python เมื่อไรจะมา Blog เพิ่มเติมครับ
labs.codecademy.com
labs.codecademy.com
วันจันทร์ที่ 2 มกราคม พ.ศ. 2555
วันอาทิตย์ที่ 11 ธันวาคม พ.ศ. 2554
Python Programming Tutorial From Youtube
- Installing Python
- Numbers and Math
- Variables
- Modules and Functions
- How to Save Your Programs
- Strings
- More on Strings
- Raw Input
- Sequences and Lists
- Slicing
- Editing Sequences
- More List Functions
- Slicing Lists
- Intro to Methods
- More Methods
- Sort and Tuples
- Strings n Stuff
- Cool String Methods
- Dictionary
- If Statement
- else and elif
- Nesting Statements
- Comparison Operators
- And and Or
วันพฤหัสบดีที่ 8 ธันวาคม พ.ศ. 2554
Readers Choice Awards 2011 [Linux Journal]
Python ได้รับแรงโหวตจากผู้อ่าน Linux Journal ให้เป็นอันดับ 1 ใน 2 สาขาได้แก่ Best Programming Language, Best Scripting Language
รางวัลอื่นดูได้จาก http://www.linuxjournal.com/slideshow/readers-choice-2011?page=27
รางวัลอื่นดูได้จาก http://www.linuxjournal.com/slideshow/readers-choice-2011?page=27
วันพุธที่ 30 พฤศจิกายน พ.ศ. 2554
วันจันทร์ที่ 28 พฤศจิกายน พ.ศ. 2554
วันพฤหัสบดีที่ 24 พฤศจิกายน พ.ศ. 2554
วันพุธที่ 23 พฤศจิกายน พ.ศ. 2554
วันอังคารที่ 26 มกราคม พ.ศ. 2553
assert statements
คำสั่ง assert เป็นการที่จะให้โปรแกรมนั้นแสดง Error AssertionError ถ้าเงื่อนไขนั้นไม่ถูกต้อง ดูตัวอย่างจะง่ายกว่า
เมื่อรันโปรแกรมจะแสดง Error
Traceback (most recent call last):
File "C:\Documents and Settings\be\Desktop\assert.py", line 2, in
assert a == b, 'Hello'
AssertionError: Hello
แต่ถ้าใส่ค่า a กับ b เท่ากันก็จะไม่เกิด error
a,b = 1,2
assert a == b, 'Hello'
เมื่อรันโปรแกรมจะแสดง Error
Traceback (most recent call last):
File "C:\Documents and Settings\be\Desktop\assert.py", line 2, in
assert a == b, 'Hello'
AssertionError: Hello
แต่ถ้าใส่ค่า a กับ b เท่ากันก็จะไม่เกิด error
สมัครสมาชิก:
บทความ (Atom)