I doubt that VB.DotNet is an extremely high-level event driven language
does python have the ability to
import dlls
use windows dlls without import (i.e anything windows can do VBDotNet can do including low-level operations)
create tcp/ip connections with ssl
communicate with any protocol over a tcp/ip connection
utilize multiple processors/processes simultaneously
run background processes
easily create activex controls
add multiple handlers to a single event
create database connections
store user settings (without sessions)
edit and sort XML
split strings
initialize variable at compile time or runtime
office interop
etc.
I don't think so
theres a reason python is called a scripting language and not just a programming language.
its underdeveloped relative to windows.
also I didn't realize this before but apparently VB net is possibly the only language that has "with" statements
these really help keep code clean.
for example
- Code: Select all
combobox1.add("A")
combobox1.add("b")
combobox1.add("c")
combobox1.add("d")
becomes
- Code: Select all
with combobox1
.add("a")
.add("b")
.add("c")
.add("d")
end with