FileMood

Download Introduction to Python, 2nd Edition Learn How to Program Today with Python

Introduction to Python 2nd Edition Learn How to Program Today with Python

Name

Introduction to Python, 2nd Edition Learn How to Program Today with Python

  DOWNLOAD Copy Link

Trouble downloading? see How To

Total Size

2.4 GB

Total Files

201

Last Seen

2025-07-07 00:40

Hash

23D282ED277D1A42B4CBBFAA3AA5BD20F163693B

/.../challenge_7_web_app/

app.py

0.0 KB

db.py

1.1 KB

/examples/

example_19_data_analysis.ipynb

0.0 KB

example_1_first_code.py

0.4 KB

example_2_types.py

0.3 KB

example_3_variables.py

0.6 KB

example_4_strings.py

0.8 KB

example_5_modules.py

1.0 KB

example_6_functions.py

0.1 KB

example_7_math_comparisons.py

0.2 KB

example_8_boolean_comparisons.py

0.6 KB

example_9_other_comparisons.py

0.5 KB

example_10_if_else.py

0.5 KB

example_11_while_loops.py

0.4 KB

example_12_lists.py

1.6 KB

example_13_for_loops.py

0.7 KB

example_14_data_structures.py

1.7 KB

example_15_files.py

0.1 KB

example_16_more_functions.py

1.3 KB

example_17_classes.py

0.8 KB

example_18_type_hints.py

0.2 KB

/Lesson 4 Lists and Loops/

007. 4.6 More context Refactor your code.mp4

93.7 MB

001. Learning objectives.mp4

8.4 MB

002. 4.1 Use a while loop.mp4

44.6 MB

003. 4.2 Improve the number-guessing game with while loops.mp4

33.8 MB

004. 4.3 Create and manipulate lists.mp4

47.0 MB

005. 4.4 Loop over sequences with for loops.mp4

71.0 MB

006. 4.5 Write a quiz game.mp4

75.5 MB

/Lesson 1 Introduction to Programming and Python/

003. 1.2 Choose a code editor.mp4

47.9 MB

004. 1.3 Run Python code.mp4

38.7 MB

005. 1.4 Write an area calculator.mp4

36.6 MB

006. 1.5 More context Understand what programming is.mp4

54.0 MB

002. 1.1 Install Python.mp4

35.9 MB

001. Learning objectives.mp4

9.2 MB

/Lesson 2 Python and Programming Basics/

001. Learning objectives.mp4

7.5 MB

002. 2.1 Learn about types.mp4

21.1 MB

003. 2.2 Work with variables.mp4

50.1 MB

004. 2.3 Debug errors.mp4

61.7 MB

005. 2.4 Manipulate strings.mp4

45.9 MB

006. 2.5 Write a Mad Libs program.mp4

29.1 MB

007. 2.6 Use modules.mp4

73.3 MB

008. 2.7 Write your own functions.mp4

71.4 MB

009. 2.8 Write a timer game.mp4

57.2 MB

010. 2.9 More context Learn about Python.mp4

40.3 MB

/Lesson 3 Control Flow with Conditionals/

001. Learning objectives.mp4

8.5 MB

002. 3.1 More context Useful skills for programmers.mp4

52.0 MB

003. 3.2 Identify true and false statements.mp4

28.3 MB

004. 3.3 Use conditional if statements.mp4

73.1 MB

005. 3.4 Write a number-guessing game.mp4

49.1 MB

/Lesson 5 Additional Language Topics/

001. Learning objectives.mp4

13.5 MB

002. 5.1 More context Discuss how to keep learning.mp4

74.6 MB

003. 5.2 Look at more data structures.mp4

57.5 MB

004. 5.3 Read files.mp4

47.3 MB

005. 5.4 Write more complex functions.mp4

67.3 MB

006. 5.5 Program with classes.mp4

91.6 MB

007. 5.6 Import external packages.mp4

33.9 MB

008. 5.7 Add type-hints.mp4

39.7 MB

/Lesson 6 Introduction to Data Analysis in Python/

001. Learning objectives.mp4

8.1 MB

002. 6.1 Look at the ecosystem.mp4

25.6 MB

003. 6.2 Start a Jupyter notebook.mp4

40.0 MB

004. 6.3 Import a dataset.mp4

35.3 MB

005. 6.4 Clean some data.mp4

45.8 MB

006. 6.5 Plot the data.mp4

36.9 MB

007. 6.6 Find some statistics.mp4

21.8 MB

/Lesson 7 Introduction to Web Development in Python/

001. Learning objectives.mp4

12.8 MB

002. 7.1 Look at the anatomy of a web app.mp4

31.2 MB

003. 7.2 Start a web app with Flask.mp4

44.3 MB

004. 7.3 Create a static page.mp4

74.6 MB

005. 7.4 Get content from the back-end.mp4

79.2 MB

006. 7.5 Make the page dynamic.mp4

62.1 MB

007. 7.6 Hook up a database.mp4

90.2 MB

008. 7.7 Get more context databases and deployment.mp4

21.0 MB

/Summary/

001. Introduction to Python Summary.mp4

7.0 MB

/z.intro-to-python-2ed-main/

.gitignore

0.2 KB

README.md

4.8 KB

/challenges/

challenge_1_triangle_area.py

0.2 KB

challenge_2_mad_libs.py

0.2 KB

challenge_3_time_target.py

0.2 KB

challenge_4_number_guess.py

0.2 KB

challenge_5_quiz.py

0.4 KB

challenge_6_analysis.ipynb

3.1 KB

/Introduction/

001. Introduction to Python Introduction.mp4

22.3 MB

/.../challenge_7_web_app/static/

index.js

0.6 KB

style.css

0.6 KB

/.../challenge_7_web_app/templates/

examples.html

0.6 KB

index.html

0.2 KB

/challenges/data/

tips.csv

9.7 KB

/challenges/solutions/

challenge_1_triangle_area.py

0.2 KB

challenge_2_mad_libs.py

0.2 KB

challenge_3_time_target.py

0.5 KB

challenge_4_number_guess.py

0.9 KB

challenge_4b_number_guess_functions.py

0.6 KB

challenge_4c_number_guess_while.py

0.7 KB

challenge_4d_number_guess_for.py

0.7 KB

challenge_5_quiz.py

0.8 KB

challenge_5b_quiz_refactored.py

1.1 KB

challenge_5b_tests.py

0.7 KB

challenge_5c_quiz_structures.py

1.4 KB

challenge_5d_quiz_file.py

0.8 KB

challenge_5e_quiz_functions.py

1.2 KB

challenge_5f_quiz_classes.py

1.4 KB

challenge_5g_quiz_type_hints.py

1.3 KB

challenge_6_analysis.ipynb

368.8 KB

/.../challenge_7_web_app/

app.py

1.0 KB

db.py

1.1 KB

/.../challenge_7_web_app/static/

index.js

0.6 KB

style.css

0.6 KB

/.../challenge_7_web_app/templates/

examples.html

0.6 KB

index.html

1.0 KB

/challenges/solutions/data/

A_countries.txt

0.1 KB

C_elements.txt

0.1 KB

M_countries.txt

0.2 KB

tips.csv

9.7 KB

V_countries.txt

0.1 KB

/challenges/solutions/quiz_files/

countries_A.txt

0.1 KB

countries_B.txt

0.2 KB

countries_C.txt

0.2 KB

countries_D.txt

0.1 KB

countries_E.txt

0.1 KB

countries_F.txt

0.0 KB

countries_G.txt

0.1 KB

countries_H.txt

0.1 KB

countries_I.txt

0.1 KB

countries_J.txt

0.0 KB

countries_K.txt

0.1 KB

countries_L.txt

0.1 KB

countries_M.txt

0.2 KB

countries_N.txt

0.1 KB

countries_O.txt

0.0 KB

countries_P.txt

0.1 KB

countries_Q.txt

0.0 KB

countries_R.txt

0.0 KB

countries_S.txt

0.3 KB

countries_T.txt

0.1 KB

countries_U.txt

0.1 KB

countries_V.txt

0.1 KB

countries_Y.txt

0.0 KB

countries_Z.txt

0.0 KB

elements_A.txt

0.1 KB

elements_B.txt

0.1 KB

elements_C.txt

0.1 KB

elements_D.txt

0.1 KB

elements_E.txt

0.1 KB

elements_F.txt

0.1 KB

elements_G.txt

0.1 KB

elements_H.txt

0.1 KB

elements_I.txt

0.1 KB

elements_K.txt

0.0 KB

elements_L.txt

0.1 KB

elements_M.txt

0.1 KB

elements_N.txt

0.1 KB

elements_O.txt

0.1 KB

elements_P.txt

0.1 KB

elements_R.txt

0.1 KB

elements_S.txt

0.1 KB

elements_T.txt

0.1 KB

elements_U.txt

0.0 KB

elements_V.txt

0.0 KB

elements_X.txt

0.0 KB

elements_Y.txt

0.0 KB

elements_Z.txt

0.0 KB

/docs/

PYTHON-IDE.md

1.6 KB

PYTHON-LOCATIONS.md

0.5 KB

WININSTALL.md

1.5 KB

/docs/img/

CodeButton.png

8.1 KB

pycharm_python_1.png

199.2 KB

pycharm_python_2a.png

369.8 KB

pycharm_python_2b.png

456.2 KB

pycharm_python_3.png

321.8 KB

pycharm_python_4a.png

286.1 KB

pycharm_python_4a2.png

389.8 KB

pycharm_python_4b.png

342.9 KB

pycharm_python_4b2.png

419.1 KB

pycharm_python_5.png

201.7 KB

vscode_python_1.png

171.1 KB

vscode_python_2a.png

95.4 KB

vscode_python_2b.png

98.3 KB

/examples/data/

input.txt

0.0 KB

/.../examples_ai_test/

chat_gpt.py

2.5 KB

copilot.py

1.5 KB

gpt_python.py

2.4 KB

/problems/

problem_1_area_calculator.py

0.1 KB

problem_2_happy_birthday.py

0.1 KB

problem_3_temperature.py

0.1 KB

problem_4_dice.py

0.1 KB

problem_5_time.py

0.1 KB

problem_6_circle_stats.py

0.4 KB

problem_7_bus_fare.py

0.3 KB

problem_8_countdown.py

0.2 KB

problem_9_vowel_counter.py

0.1 KB

problem_10_card_hand.py

0.2 KB

/problems/solutions/

problem_1_area_calculator.py

0.1 KB

problem_2_happy_birthday.py

0.3 KB

problem_3_temperature.py

0.2 KB

problem_4_dice.py

0.2 KB

problem_5_time.py

0.2 KB

problem_6_circle_stats.py

0.6 KB

problem_7_bus_fare.py

0.4 KB

problem_8_countdown.py

0.3 KB

problem_9_vowel_counter.py

0.2 KB

problem_10_card_hand.py

0.4 KB

 

Total files 201


Copyright © 2025 FileMood.com