摘要:
声明变量的三种方式(支持多变量声明) // 声明变量方式1 // 指定变量类型,声明后若不赋值,使用默认值 var i int fmt.Println("i=", i) // 声明变量方式2 // 类型推导式 var b = 2 fmt.Printf("b=%d \n", b) // 声明变量方式3 阅读全文
摘要:
# This is a sample Python script.from pynput import mousefrom pynput import keyboardimport threadingimport time# Press Shift+F10 to execute it or repl 阅读全文