Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - jb3navides

Pages: [1]
1
Math and Science / Grade 11 chemistry
« on: August 27, 2013, 11:54:28 pm »
C6H8O6 + I2 ---> C6H6O6 + 2I– + 2H

hey in this reaction what is the conjugate base and conjugate acid and also does the bronsted lowry theory, arrhenius, lewis or whatever apply to this?
Another thing is that i am asked to provide background information on a report for an eei (extended experimental investigation), i know its different to an abstract but i don't know how to write it...
thanks

2
Computer Programming / Types of programming
« on: June 16, 2013, 10:27:43 pm »
hey guys if I have a program that is a series of functions what type of programming was used to make it?
like this:
Code: [Select]
def function1():
    print "Hi"
    function2()

def function2():
    print "Hello"
    function3()

3
Computer Programming / please help
« on: June 11, 2013, 08:35:48 pm »
hey guys what I need is piece of code that will do this:
if weight_p == (a letter, symbol, or anything other than a number)
     then print this and restart the function
Code: [Select]
def weight_for_p():
    global weight_p
    print "How much does your pork weigh(kg)?"

    weight_p = float(raw_input(">"))

4
Computer Programming / Coding help
« on: June 10, 2013, 11:48:35 pm »
Hey guys can you fix python code, when I run it and type letters (numbers only) it is supposed to restart the function, but it prints a whole load of stuff and exits the program.

Code: [Select]
def weight_for_blv():
    global weight_blv
    print "How much does your meat weigh(kg)?"

    weight_blv = int(raw_input(">"))

    if (weight_blv > 0) and (weight_blv <= 10):
        doness()
    elif (weight_blv <= 0) and (weight_blv > 10):
        print "Invalid, type again, the minimum is greater than 0 and the maximum is 10, and numbers only"
        weight_for_blv()
    else:
        print "Invalid, type again, the minimum is greater than 0 and the maximum is 10, and numbers only"
        weight_for_blv()

5
Computer Programming / I need help
« on: May 28, 2013, 09:31:10 pm »
    if condition1 == "beef" or "lamb" or "venison", and condition2blv <= 5, and condition3 == "rare":
        print condition2blv * 20

the problem seems to be the comma after "venison"
When I run it in powershell (windows) there is an arrow pointing to the comma I mentioned
condition1, condition2blv, condition3 are all variables from past functions, (involves raw_input())

6
(all going on in my calculator)I'm on the rom select screen, I click on my rom, it runs a little (shows the franchise names) then it goes back to my documents screen (my rom is resident evil gaiden). I should also add that the rom runs well on my computer from the bgb emulator, and no I don't mean gpsp, but thanks to everyone.

Pages: [1]