Learning Python from Codecademy

---syntax---

1. booleans: True and False

2. assin and reassign value to variable: spam =3

3. whitespace: indent(indentation) two blank spaces of four blank spaces

4. interpreter(interpretation): run your code line by line, and check for any errors

5. single line comment: use the # sign

6. multi-line comment: starting each line with #, or use a set of triple quotation marks""".........."""

7. exponent(exponentiation): use **, like this 10**2

8. modulo: get the reminder from division, when you use decimal, you should set like this 15.0/100 not 15/100

时间: 2024-10-10 16:42:28

Learning Python from Codecademy的相关文章

Python学习手册《Learning Python》

Python有一个交互式的开发环境,因为Python 是解释运行,大大节省了每次编译的时间 本书是两卷本的合集中的第一本,主要关注核心是Python语言本身,而不是其特定的 语言程序. learning Python,也就是本书,介绍Python本身: Progamming Python,另外一本书,介绍学完P可以干什么.Web,GUI(图形用户界面),数据库.... .

learning python paramiko -->one

1.1简介: paramiko是用python语言写的一个模块,遵循SSH2协议,支持以加密和认证的方式,进行远程服务器的连接. 由于使用的是python这样的能够跨平台运行的语言,所以所有python支持的平台,如Linux, Solaris, BSD, MacOS X, Windows等,paramiko都可以支持,因此,如果需要使用SSH从一个平台连接到另外一个平台,进行一系列的操作时,paramiko是 最佳工具之一. 1.2安装: 安装paramiko有两个先决条件,python和另外

《Learning.Python》pdf

下载地址:网盘下载 ""How to Think Like a Computer Scientist"" is an introduction to programming using Python, one of the best languages for beginners. This is a Free Book -- you can download it from thinkpython.com. But if you would like to mak

Learning Python telnet.lib

#!/usr/bin/env python import getpass import sys import telnetlib HOST = "X.X.X.X" user = raw_input("Enter your telnet username: ") password = getpass.getpass() tn = telnetlib.Telnet(HOST) tn.read_until("username: ") tn.write(

Learning Python

P5. >>> import sys>>> sys.version'2.7.6 (default, Jun 22 2015, 17:58:13) \n[GCC 4.8.2]'>>> def f(a,b=1,c=2):    print a,b,c     >>> apply(f,(1,),{'b':1,'c':2})1 1 2>>> a=1>>> `a`'1'>>> repr(a)

[Machine Learning]Python机器学习库

Numpy: numpy提供两种基本的对象:ndarray和ufunc,ndarray是存储单一数据类型的多为数组,ufunc是能够对数组进行操作的函数. 创建数组: a = numpy.array([1, 2, 3, 4]) b = np.array([[1, 2, 3, 4], [4, 5, 6, 7]]) 数组的形状可以通过其shape属性获得,它是一个描述数组各个轴长度的元组: 1 a.shape 2 # 结果: (4,) 3 b.shape 4 # 结果: (2, 4) 在保持数组元素

Python Tools for Machine Learning

Python Tools for Machine Learning Python is one of the best programming languages out there, with an extensive coverage in scientific computing: computer vision, artificial intelligence, mathematics, astronomy to name a few. Unsurprisingly, this hold

Python 的经典入门书籍

实python非常适合初学者入门,上手很容易.我就是完全通过网上资源学了python的.最大的是3点经验:1.找一本浅显易懂,例程比较好的教程,从头到尾看下去.不要看很多本,专注于一本.把里面的例程都手打一遍,搞懂为什么.2.去找一个实际项目练手.我当时是因为要做一个网站,不得已要学python.这种条件下的效果比你平时学一门新语言要好很多.所以最好是要有真实的项目做.可以找几个同学一起做个网站之类.3.最好能找到一个已经会python的人.问他一点学习规划的建议,然后在遇到卡壳的地方找他指点.

《转载》为什么我要在2018年学习Python?

本文转载自36kr 从网页编程到时髦的人工智能,机器学习,这个享有"瑞士军刀(万能工具)"盛誉的Python语言, 你学会了吗? 编者注: 根据维基百科的解释,"Python是一种广泛使用的高级编程语言,由吉多·范罗苏姆创造,第一版发布于 1991 年.Python 的设计哲学强调了代码的可读性和简洁的语法." 随着大数据,人工智能的兴起,越来越多的人也开始研究起这门语言.以下这篇文章编译自Alexus Strong 在在线学习编程网站Codecademy 上发表的