Python Bytes Lesson Five: Files

preview_player
Показать описание
Hey, Python gang!👋🏼

Welcome to Lesson Five of Python Bytes. Today, you will learn about files- file handling is an important part of any web application 🧠

Happy coding! 👩🏽‍💻💡👨🏻‍💻

Links:

Materials Needed: PC, MAC, Chromebook, or tablet 💻
Experience Required: None!
Suggested Age: 8+

________________________________________________________________________________________________
Let us know in the comments section below what you enjoy and what we can improve, so that we can tailor our lessons to best help YOU👍🏼

Рекомендации по теме
Комментарии
Автор

Lesson 4 Homework

# Sorts a list of numbers

v = int(input("Type a number: "))
w = int(input("Type a number: "))
x = int(input("Type a number: "))
y = int(input("Type a number: "))
z = int(input("Type a number: "))
# Can you find out a more efficient
# way to write this?

numbers = [v, w, x, y, z]

numbers.sort()
print(numbers)

burkmurray
welcome to shbcf.ru