初学python:边学边练,定义函数

一、定义函数:

在Python中,定义一个函数要使用def语句,依次写出函数名、括号、括号中的参数和冒号:,然后,在缩进块中编写函数体,函数的返回值用return语句返回。

import math

def move(x, y, step, angle=0):
    nx = x + step * math.cos(angle)
    ny = y - step * math.sin(angle)
    return nx, ny
>>> x, y = move(100, 100, 60, math.pi / 6)
>>> print(x, y)
151.96152422706632 70.0

如果你已经把move()的函数定义保存为movetest.py文件了,那么,可以在该文件的当前目录下启动Python解释器,用from movetest import move来导入move()函数,注意movetest是文件名(不含.py扩展名)。

函数调用:举例说明

Python List append()

构造一个 1, 3, 5, 7, ..., 99的列表,可以通过循环实现:

aList = [123, 'xyz', 'zara', 'abc'];
aList.append( 2009 );
print "Updated List : ", aList;
输出的结果如下:
Updated List :  [123, 'xyz', 'zara', 'abc', 2009]




你可能感兴趣的:(初学python)