原创: 叫我詹躲躲 来源: 掘金 链接: juejin.im/post/5f05e1…
1编写第一个程序(python 3)
print('hello world!')
复制代码
2.查看python 版本号
python -v
复制代码
3.使用变量
message = 'hello world!'
print(message)
复制代码...
阅读全文