Saturday, April 7, 2012

Python: How to insert characters to the string at the end

Reference: http://stackoverflow.com/q/10059554/1276534
Credits: user1319219, Akavall, Mark Byers

Just in case you wondering what are the ways to insert character to the string at the front or back (beginning or end) of a string. Here are the ways to do it. Notice, string is immutable object, so you can not insert anymore characters into it. All we are doing is create a new string, and assign it to the variable. (That's why I did not use the same name, because I want to emphasize they are NOT the same string). But you can just as well use text = (any method)

# Create a new string that have 1 x in the beginning, and 2 x at the end
# So I want the string to look like this 'xHello Pythonxx'
text = 'Hello Python'

# Method 1, string concatenation
new_text = 'x' + text + 'xx'

# Method 2, create a new string with math operators
i = 1
j = 2
new_text = ('x'*i) + text + ('x'*j)

# Method 3, use the string's join() method
# You are actually joining the 3 part into a originally empty string
new_text = ''.join(('x', text, 'xx'))
And in case you don't trust me and want to see the output:
xHello Pythonxx
xHello Pythonxx
xHello Pythonxx

Python: How to find the integer and float in a string

Reference: http://stackoverflow.com/a/10059001/1276534
Credits: MellowFellow, hexparrot

If you have a string from somewhere, say a textbook, or an input. The string contain the data information you need. How do you extract the string? There are quite a few way to do it, range from hard code accessing it from index, to finding the E=, to using regular expression. In this example we will go over the middle of the range one. Because as beginner, it might not be the best idea to introduce regular expression yet. Plus this is the version I understand, maybe the regular expression version will be provided soon. (If you can't wait, you can check out from the reference link from above, there is the regular expression solution as well.)
# Assume you get this string from either a file or input from user
text_string = 'The voltage is E=500V and the current is I=6.5A'

# The starting index of this locating the voltage pattern
voltage_begin = text_string.find('E=')
# The ending index, note we are ending at 'V'
voltage_end = text_string.find('V', voltage_begin)

voltage_string = text_string[voltage_begin:voltage_end]
print(voltage_string, 'is at index:', voltage_begin, voltage_end)

#Since we know about the first to index is not useful to us
voltage_string = text_string[voltage_begin+2:voltage_end]

# So since now we have the exact string we want, we can cast it to an integer
voltage_as_int = int(voltage_string)
print(voltage_as_int)

Python: How to search a list of class element by their data (self.name) variable

Reference: http://stackoverflow.com/q/10052322/1276534
Credits: nitin, kindall

Imagine you have a class of Food, and you want to create a list that store your class of Food. How do you search your class element within your list? Take a look at the code.
class Food:
    def __init__(self, name):
        self.name = name

chicken = Food('Egg')
cow = Food('Beef')
potato = Food('French Fries')

# And then you create the list of food?
myFoodList = [chicken, cow, potato]
The way you want to implement your class so you can search through them by their name variable is done via dictionary. (This is one way to do it, set also might work depend on your class's implementation and required functionality).
class Food:
    lookup = {}
    def __init__(self, name):
        self.name = name
        Food.lookup[name] = self

chicken = Food('Egg')
cow = Food('Beef')
potato = Food('French Fries')

# Example of a lookup from the dictionary
# If your name is in your class Food's lookup dictionary
if 'Egg' in Food.lookup:
    # Do something that you want
    print (Food.lookup['Egg'].name)

Friday, April 6, 2012

Python: How to remove, or pop an element randomly from a list

Reference: http://stackoverflow.com/q/10048069/1276534
Credit: Henrik, F.J, Óscar López, Niklas B.

Assuming you want to randomly remove an element from your list, you can use the random module, to generate a random number, between the valid index in your list. Take a look at the code below.
# Import the random module
import random

# This is your list with some number
# But you can of course have anything you in your list
myList = [1, 3, 5, 7, 9, 11]

# Method #1
myList.pop(random.randrange(len(myList)))

# Method #2 (This one will change your list)
random.shuffle(myList)
# While my list is not empty
while myList:
    myList.pop

(Method 1) Let's studying this code from the inner to the outer layer.
  1. We get the length of the list, with my len(myList)
  2. Then we call randrange(), what randrange does it return a number that is pick randomly between the range we provide it. But except we do not actually create this list. Like range() would.
  3. Then finally we pop it from our list.
(Method 2) This will be good, if you want to use your list all together, instead of just popping one element. This is used in the csci133 example in the playing deck, since you have to shuffle your whole deck and then pick 1 card at a time. It make sense to have it shuffled.

    Thursday, April 5, 2012

    Python: When NOT To use Global Variable, Use Return!

    Reference: http://stackoverflow.com/q/10036747/1276534
    Credit: Ricky, jdi, Maty

    Using global variable in your Python function is really easy, but today I read a post that explain why not to use it. And I found it make a lot of sense, I am not used to write without the pass by reference. Take a look at this code below.
    def getSalary():
        global a, b, c
        a = input("Please enter the boss's salary")
        b = input("Please enter the director's salary")
        c = input("Please enter the factory worker's salary")
    

    Notice this function, it asks the user for 3 different salary and store them in a, b, c respectively. But it is not a good practice, instead we should use the return function.

    def getSalary():
        a = input("Please enter the boss's salary")
        b = input("Please enter the director's salary")
        c = input("Please enter the factory worker's salary")
        return a, b, c
    
    # And to way to use this function is like
    a, b, c = getSalary()
    
    This make the code a lot more readable, and useable. Imagine if you make a mistake in the program, if you use global variable, you will have a very hard time tracking where exactly does your value get changed. While doing it the second method, you will know a, b, c is changed on the getSalary line's return. And you can print them as you writing your program to debug it.

    And as jdi pointed out, it is always always better to use more meaningful variable name than a,b,c,d, or x,y,z. Imagine you use bossSalary, directorSalary, factoryWorkerSalary, the code is a lot easier to understand. Granted, maybe a little bit long. But maybe you can use workerSalary at least!

    And when you have a function that modify your object, such as your own class, a list. Maybe (depending on the situation), you might want to create a new variable and assign it, or you can overwrite it too!
    def newSalary(salary):
        return salary + salary * 0.02
    
    # Use it like this
    nextYearSalary = newSalary(salary)
    # Or overwrite the old one
    mySalary = newSalary(salary)
    

    Tuesday, April 3, 2012

    Python: How to print the ValueError Error Message

    try:
        ...
    except ValueError as e:
        print(e)
    
    

    Python Tkinter: How to set the window size without using canvas

    Reference: http://stackoverflow.com/q/9996599/1276534
    Credit: George, Bryan Oakley

    Here is the code on how to set the window size without using canvas, it is great if you just starting, or do not want to use canvas to do this. You can specify your dimension in your frame, and then use pack_progate(0) flag to tell tkinter to use your size.
    import tkinter as tk
    
    root = tk.Tk()
    frame = tk.Frame(root, width=400, height=400)
    frame.pack_propagate(0) # set the flag to use the size
    frame.pack() # remember to pack it or else it will not be pack
    
    textBox = tk.Label(frame, text="(x,y): ")
    textBox.pack()
    
    root.mainloop()
    
    Note: If your frame is not big enough to how the items, it will expand to fit your items). And the pack_progate(0) is a flag, it does not replace pack() method, you still have to call it or otherwise it will not appear. Hope this help.

    Reference: stackoverflow 1, stackoverflow 2

    Monday, April 2, 2012

    Python: [] vs. {} vs. ()

    Reference: http://stackoverflow.com/q/4407873/1276534
    Authors: Zolomon, Greg Hewgill, Andrew Jaffe

    It is a good note post to make sure we remember what is [] vs. {} vs. ()

    () - tuple

    A tuple is a sequence of items that can't be changed (immutable).

    [] - list

    A list is a sequence of items that can be changed (mutable).

    {} - dictionary or set

    A dictionary is a list of key-value pairs, with unique keys (mutable). From Python 2.7/3.1, {} can also represent a set of unique values (mutable).

    Python: Regular Expression 101 Example Code

    Reference: http://stackoverflow.com/q/9980381/1276534
    Authors: Rajeev, George

    In computer science theory class, we learned about regular expression. But it is unclear what exactly can it do at first, today I would like to introduce data validation as an example that uses the concept of regular expression. Python itself, like other language I assume (heard), has an implementation of regular expression. It comes standard from python too, see: http://docs.python.org/library/re.html

    For example, you would like to ask the user for a telephone number, in the format of: 917-222-1234, if it is not in the format of XXX-XXX-XXXX, it will ask the user again until it is store. Let's take a look at the sample code.
    import re
    
    while True:
        # Get the user's input into the string
        myString = input('Enter your telephone number: ')
        
        # Matching it with the regular expresssion
        # isGoodTelephone will return True if it matches
        isGoodTelephone = re.match('^[0-9]{3}-[0-9]{3}-[0-9]{4}$', myString)
        
        if (isGoodTelephone):
            print('Great! Got your phone number into the system')
            print('Entry:', myString)
        else:
            print('Not in the correct format. Ex: xxx-xxx-xxxx')
        print()
    
    
    Output of the csci133rep1.py:
    Enter your telephone number: 917-123-1234
    Great! Got your phone number into the system
    Entry: 917-123-1234
    
    Enter your telephone number: 9171231234
    Not in the correct format. Ex: xxx-xxx-xxxx
    
    Actually the basic of the regular expression is not too hard to learn, take a look at the bottom and you will able to figure out how to use it with no problem. Didn't need to put too much comment to make it understandable. Although there are much more ways to use it than just the telephone.
    ^[0-9]{3}-[0-9]{3}-[0-9]{4}$
    ^       # mark the start of the telephone string
    [0-9]   # any one of the 0123456789
    {3}     # match it exactly three times, no less
    -       # a hyphen symbol
    [0-9]   # any one of the number between 0 and 9
    {3}     # exactly three copies
    -       # another hyphen symbol
    [0-0]   # any one of the number 0-9
    {4}     # four times
    $       # mark the end of the telephone string
    

    Sunday, April 1, 2012

    Python: Calculate Grade Point Average In a 4.0 Scale

    This is a simple program that take a list of grade, and then convert it to a 4.0 GPA scale with 1 decimal point, finally calculate the grade point average.
    # Take the list of grade as input, assume list is not empty
    def convertGrade(myGrades):
        myResult = [] # List that store the new grade
        for grade in myGrades:
            gpa = (grade / 20) -1
            # Depending on how many deciaml you want
            gpa = round(gpa, 1)
            myResult.append(gpa)
        return myResult
    
    # The list of grades, can be more than 5 if you want to
    grades = [88.3, 93.6, 50.2, 70.2, 80.5]
    convertedGrades = convertGrade(grades)
    print(convertedGrades)
    
    total = 0
    # If you want the average of them
    for grade in convertedGrades:
        total += grade # add each grade into the total
        
    average = total / len(convertedGrades)
    print('Average GPA is:', average)
    
    Output:
    [3.4, 3.7, 1.5, 2.5, 3.0]
    Average GPA is: 2.82