Hi I was reading the thread http://www.daniweb.com/forums/thread12326.html which is about getting user input from a user in python.
So I thought I would write something to tst it since I haven't used python in a while so I wrote a basic program to calculate netpay.
hours = raw_input("Enter Hours Worked: ")
gross = (hours * 12)
netpay = ( gross - ( gross * 0.15))
print "Your net wage is" $netpay
However I cannot get user input as the program doesn't wait for the user to input data just processes through, so how do you ge the program to stop for the user when getting input?