Teaching Python to future attorneys... 😬
Teaching Python to future attorneys... 😬
I have mixed feelings, but I think is something useful for them to know.
My general idea (for any university) is that between 18-25 years is not the best moment to decide what you want to do professionally 'for the rest of you life', so...
I have mixed feelings, but I think is something useful for them to know.
My general idea (for any university) is that between 18-25 years is not the best moment to decide what you want to do professionally 'for the rest of your life', so...
As for this:
> My general idea (for any university) is that between 18-25 years is not the best moment to decide what you want to do professionally 'for the rest of your life', so...
100% agree.
As for this:
> My general idea (for any university) is that between 18-25 years is not the best moment to decide what you want to do professionally 'for the rest of your life', so...
100% agree.
As for this:
> My general idea (for any university) is that between 18-25 years is not the best moment to decide what you want to do professionally 'for the rest of your life', so...
100% agree.
As for this:
> My general idea (for any university) is that between 18-25 years is not the best moment to decide what you want to do professionally 'for the rest of your life', so...
100% agree.
package main
import (
"fmt"
"net/http"
)
func main() {
http.Handle("/", func (w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello World!")
}
http.ListenAndServe(":8000", nil)
}
package main
import (
"fmt"
"net/http"
)
func main() {
http.Handle("/", func (w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello World!")
}
http.ListenAndServe(":8000", nil)
}