แค่ update python version จาก 2.6.4 ไป 3.1.2
แม่มสงสัยอยู่ตั้งนานว่า ทำไม update python version 3.1.2 บนเครื่อง cloud2 แล้วมันแปลกๆ แค่ลอง print ‘test’ มันก็ฟ้อง error ไอ้เราก็หาวิธีแก้อยู่ตั้งนาน ที่ไหนได้ python 3.1.2 มันบอกว่า print is a function แล้วนะเธอว์ๆๆๆๆๆ แสดเ ...
Read More[Python] Evolution of a Python programmer.py
เจอผ่านๆ ลูกตา รู้สึกประทับใจ เรยเก็บไว้หน่อย นะๆๆ 1 2 3 4 5 6 7 #Newbie programmer def factorial(x): if x == 0: return 1 else: return x * factorial(x - 1) print factorial(6)
Read More[Python] Optimize what needs optimizing?
ปกติแล้ว เวลาผมเขียนโปรแกรมจะถือคตินี้มาตลอด นั่นคือ Make it done, make it right, and then make it fast. blog นี้จะมาบอกว่า เราจะ opimize โปรแกรมที่เขียนด้วยภาษา python ได้อย่างไรบ้าง อย่างแรก ให้ติดตั้ง Python profiler ก่อน คลิก เพ ...
Read More[Python] Identify the bottlenecks by Python profilers
Python Profiler package เป็น package ไว้สำหรับ วิเคราะห์ประสิทธิภาพของโปรแกรมที่เขียนด้วยภาษา python เพื่อหา bottleneck หรือปัญหาคอขวดของโปรแกรมของเราว่าอยู่ตรงไหน Minimum-requirement: Python 2.6 or later [use profiler and pstats package] ถ้าเครื่องไหนไ ...
Read MoreComparing the well-known sorting algorithm
ไหนๆ เรียนวิชา Algorithm มาแล้ว มาเขียน Blog ให้เป็นประโยชน์กะรุ่นน้องหน่อยละกัน Bubble Sort [O(n²)] 1 2 3 4 5 6 7 8 9 def bubble(list): swap = True while swap: swap = False for i in range(len(list)-1): if list[i] > list[i+1] : list[i],list[i+1] = list[i+1],list[i] swap = True return list รา ...
Read More