https://github.com/tensorflow/tensorflow
机器学习, 先验学习
Install
See the TensorFlow install guide for the pip package, to enable GPU support, use a Docker container, and build from source.
To install the current release, which includes support for CUDA-enabled GPU cards (Ubuntu and Windows):
TensorFlow install guide
https://www.tensorflow.org/install 无法访问
菜鸟学习网站 https://www.runoob.com/python/python-install.html
Download Windows x86-64 executable installer
IDE: PyCharm https://www.runoob.com/w3cnote/pycharm-windows-install.html
Python 引号Python 可以使用引号( ' )、双引号( " )、三引号( ''' 或 """ ) 来表示字符串,引号的开始与结束必须的相同类型的。其中三引号可以由多行组成,编写多行文本的快捷语法,常用于文档字符串,在文件的特定地点,被当做注释。word = 'word' sentence = "这是一个句子。" paragraph = """这是一个段落。 包含了多个语句"""
Python注释python中单行注释采用 # 开头。
https://www.runoob.com/python/python-2x-3x.html
在python3.x中raw_input()和input( )进行了整合,去除了raw_input(),仅保留了input()函数,其接收任意任性输入,将所有输入默认为字符串处理,并返回字符串类型。