Что было сказано в комментариях
Public Class LikePython
Public Shared Function Input(Optional Prompt As String = "") As String
Console.Write(Prompt)
Return Console.ReadLine
End Function
End Class
Тест
Sub Main()
Dim foo As String
foo = LikePython.Input
Stop
foo = LikePython.Input(">")
Stop
End Sub