This is an oversimplified answer.
In F#, if you give a function less arguments than it expects, you get back a new function that fixes the arguments that you gave it. This is called currying or partial application, though I am sure one is more correct than the other.
let f a b = a + b
// f: int -> int -> int
let g = f 10
// returns a new functions that takes one argument
// g: int -> int
g 3 // returns 13
So, if the "let g ..." command was at the interactive prompt, the interactive system wouldn't know if g was missing an argument or not. The ";;" tells the system that you are done with it, and to please give return an answer.
In Python, the arguments are surrounded by parentheses, so there is no ambiguity. That, and there is no syntax for the curried function like there is in the ML languages.