In this chapter, you’ll learn how to group statements into functions, which enables you to tell the computer how to do something, and to tell it only once. You won’t need to give it the same detailed instructions over and over. The chapter provides a thorough introduction to parameters and scoping, and you’ll learn what recursion is and what it can do for your programs. Laziness Is a Virtue The programs we’ve written so far have been pretty small, but if you want to make something bigger, you’ll soon run into trouble. Consider what happens if you have written some code in one place and need to use it in another place as well. For example, let’s say you wrote a snippet of code that computed some Fibonacci numbers (a series of numbers in which each number is the sum of the two previous ones). fibs = [0, 1] for i in range(8): fibs.append(fibs[-2] + fibs[-1]) After running this, fibs contains the first ten Fibonacci numbers. >>> fibs...
In this blog, you can learn new python 3.8 lessons and latest frameworks.