├── 9781484218686.jpg ├── Ch02 └── Magic8Ball.py ├── Ch03 └── Kalb Code Chapter3 │ ├── CalculateMoney.py │ ├── GreetingCreator.py │ ├── SimpleAddition.py │ └── SimpleCashRegister.py ├── Ch04 └── Kalb Code Chapter4 │ ├── Add2.py │ ├── Add2WithReturn.py │ ├── CalculateAverage.py │ ├── CalculateAverageTwoCalls.py │ ├── CalculateAverageWithReturn.py │ ├── CalculateCost.py │ ├── CalculateHypoteneuse.py │ ├── CostsWithTax.py │ ├── CostsWithTaxError.py │ ├── GetGroceries1HardCoded.py │ ├── GetGroceries2SeparateRuns.py │ ├── GetGroceries3OneParameter.py │ ├── GetGroceries4FourParameters.py │ ├── GlobalAndLocalVariables1.py │ ├── GlobalAndLocalVariables2.py │ ├── SpecificAndGeneralVariableNames.py │ ├── SquareWithError.py │ ├── TemperatureConversions.py │ └── Traceback.py ├── Ch05 ├── AbsoluteValue Interactive.py ├── AbsoluteValue.py ├── CreateHeader.py ├── EvenOrOdd.py ├── Grading.py ├── NegativePositiveZero.py ├── OrderedRectangle.py ├── ShippingCost.py ├── Square.py ├── SquareWithPrinting.py └── WhatToWear.py ├── Ch06 └── Kalb Chapter 6 Code │ ├── CoinFlips.py │ ├── GetIntegerInRange.py │ ├── GetNumber.py │ ├── GuessTheNumber1.py │ ├── GuessTheNumber2.py │ ├── GuessTheNumber3.py │ ├── GuessTheNumber4.py │ ├── GuessTheNumber5Final.py │ ├── SumWithLoop.py │ ├── SumWithLoopRepeated.py │ ├── TypeAnA.py │ ├── TypeUntilDone.py │ └── TypeUntilDoneOrSkip.py ├── Ch07 └── Kalb Chapter 7 Code │ ├── AddUpList.py │ ├── AddUpToUsersNumber.py │ ├── DoublesWithForLoop.py │ ├── DoublesWithForLoopRepeated.py │ ├── MadLibs1.py │ ├── MadLibs2.py │ ├── MadLibs3.py │ ├── MadLibs4WithLists.py │ ├── MadLibs5WithListsAndFunction.py │ ├── PizzaToppings.py │ └── PizzaToppingsWithRandomChoice.py ├── Ch08 └── Kalb Chapter 8 Code │ ├── CountCharInString.py │ ├── FirstNameLastNamWithErrorChecking.py │ ├── FirstNameLastName.py │ ├── IterationWithWhile.py │ └── MonthGenerator.py ├── Ch09 ├── AddingGame1.py ├── AddingGame2.py ├── AddingGame3.py ├── AddingGame4.py ├── FileReadWrite.py ├── IncrementTestReadWrite.py ├── MultipleChoice.py ├── MultipleChoiceQuestions.txt ├── ReadMultiLineFile.py ├── TestFileIO.py ├── TestFileIOWithImport.py └── WriteMultiLineFile.py ├── Ch10 └── Kalb Chapter 10 Code │ ├── ExchangeRatesAsString.py │ ├── PowerballWithPayouts.py │ ├── StockQuoteGoogle.py │ └── StockQuoteYahooAPI.py ├── Ch11 ├── AdventureGame.py ├── AdventureGameDynamic.py ├── DictStatePopulations.py ├── DictVocabulary.py ├── DictsAndListsSamples.py ├── ExchangeRatesAsJSON.py ├── Grades.py ├── GradesExample.csv ├── JSONAndXMLRepeatingBlocks.py ├── TicTacToe.py ├── WeatherData JSON.py └── WeatherData XML.py ├── LICENSE.txt ├── README.md └── contributing.md /9781484218686.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/9781484218686.jpg -------------------------------------------------------------------------------- /Ch02/Magic8Ball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch02/Magic8Ball.py -------------------------------------------------------------------------------- /Ch03/Kalb Code Chapter3/CalculateMoney.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch03/Kalb Code Chapter3/CalculateMoney.py -------------------------------------------------------------------------------- /Ch03/Kalb Code Chapter3/GreetingCreator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch03/Kalb Code Chapter3/GreetingCreator.py -------------------------------------------------------------------------------- /Ch03/Kalb Code Chapter3/SimpleAddition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch03/Kalb Code Chapter3/SimpleAddition.py -------------------------------------------------------------------------------- /Ch03/Kalb Code Chapter3/SimpleCashRegister.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch03/Kalb Code Chapter3/SimpleCashRegister.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/Add2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/Add2.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/Add2WithReturn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/Add2WithReturn.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/CalculateAverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/CalculateAverage.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/CalculateAverageTwoCalls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/CalculateAverageTwoCalls.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/CalculateAverageWithReturn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/CalculateAverageWithReturn.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/CalculateCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/CalculateCost.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/CalculateHypoteneuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/CalculateHypoteneuse.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/CostsWithTax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/CostsWithTax.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/CostsWithTaxError.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/CostsWithTaxError.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/GetGroceries1HardCoded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/GetGroceries1HardCoded.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/GetGroceries2SeparateRuns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/GetGroceries2SeparateRuns.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/GetGroceries3OneParameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/GetGroceries3OneParameter.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/GetGroceries4FourParameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/GetGroceries4FourParameters.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/GlobalAndLocalVariables1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/GlobalAndLocalVariables1.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/GlobalAndLocalVariables2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/GlobalAndLocalVariables2.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/SpecificAndGeneralVariableNames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/SpecificAndGeneralVariableNames.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/SquareWithError.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/SquareWithError.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/TemperatureConversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/TemperatureConversions.py -------------------------------------------------------------------------------- /Ch04/Kalb Code Chapter4/Traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch04/Kalb Code Chapter4/Traceback.py -------------------------------------------------------------------------------- /Ch05/AbsoluteValue Interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch05/AbsoluteValue Interactive.py -------------------------------------------------------------------------------- /Ch05/AbsoluteValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch05/AbsoluteValue.py -------------------------------------------------------------------------------- /Ch05/CreateHeader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch05/CreateHeader.py -------------------------------------------------------------------------------- /Ch05/EvenOrOdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch05/EvenOrOdd.py -------------------------------------------------------------------------------- /Ch05/Grading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch05/Grading.py -------------------------------------------------------------------------------- /Ch05/NegativePositiveZero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch05/NegativePositiveZero.py -------------------------------------------------------------------------------- /Ch05/OrderedRectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch05/OrderedRectangle.py -------------------------------------------------------------------------------- /Ch05/ShippingCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch05/ShippingCost.py -------------------------------------------------------------------------------- /Ch05/Square.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch05/Square.py -------------------------------------------------------------------------------- /Ch05/SquareWithPrinting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch05/SquareWithPrinting.py -------------------------------------------------------------------------------- /Ch05/WhatToWear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch05/WhatToWear.py -------------------------------------------------------------------------------- /Ch06/Kalb Chapter 6 Code/CoinFlips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch06/Kalb Chapter 6 Code/CoinFlips.py -------------------------------------------------------------------------------- /Ch06/Kalb Chapter 6 Code/GetIntegerInRange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch06/Kalb Chapter 6 Code/GetIntegerInRange.py -------------------------------------------------------------------------------- /Ch06/Kalb Chapter 6 Code/GetNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch06/Kalb Chapter 6 Code/GetNumber.py -------------------------------------------------------------------------------- /Ch06/Kalb Chapter 6 Code/GuessTheNumber1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch06/Kalb Chapter 6 Code/GuessTheNumber1.py -------------------------------------------------------------------------------- /Ch06/Kalb Chapter 6 Code/GuessTheNumber2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch06/Kalb Chapter 6 Code/GuessTheNumber2.py -------------------------------------------------------------------------------- /Ch06/Kalb Chapter 6 Code/GuessTheNumber3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch06/Kalb Chapter 6 Code/GuessTheNumber3.py -------------------------------------------------------------------------------- /Ch06/Kalb Chapter 6 Code/GuessTheNumber4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch06/Kalb Chapter 6 Code/GuessTheNumber4.py -------------------------------------------------------------------------------- /Ch06/Kalb Chapter 6 Code/GuessTheNumber5Final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch06/Kalb Chapter 6 Code/GuessTheNumber5Final.py -------------------------------------------------------------------------------- /Ch06/Kalb Chapter 6 Code/SumWithLoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch06/Kalb Chapter 6 Code/SumWithLoop.py -------------------------------------------------------------------------------- /Ch06/Kalb Chapter 6 Code/SumWithLoopRepeated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch06/Kalb Chapter 6 Code/SumWithLoopRepeated.py -------------------------------------------------------------------------------- /Ch06/Kalb Chapter 6 Code/TypeAnA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch06/Kalb Chapter 6 Code/TypeAnA.py -------------------------------------------------------------------------------- /Ch06/Kalb Chapter 6 Code/TypeUntilDone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch06/Kalb Chapter 6 Code/TypeUntilDone.py -------------------------------------------------------------------------------- /Ch06/Kalb Chapter 6 Code/TypeUntilDoneOrSkip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch06/Kalb Chapter 6 Code/TypeUntilDoneOrSkip.py -------------------------------------------------------------------------------- /Ch07/Kalb Chapter 7 Code/AddUpList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch07/Kalb Chapter 7 Code/AddUpList.py -------------------------------------------------------------------------------- /Ch07/Kalb Chapter 7 Code/AddUpToUsersNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch07/Kalb Chapter 7 Code/AddUpToUsersNumber.py -------------------------------------------------------------------------------- /Ch07/Kalb Chapter 7 Code/DoublesWithForLoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch07/Kalb Chapter 7 Code/DoublesWithForLoop.py -------------------------------------------------------------------------------- /Ch07/Kalb Chapter 7 Code/DoublesWithForLoopRepeated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch07/Kalb Chapter 7 Code/DoublesWithForLoopRepeated.py -------------------------------------------------------------------------------- /Ch07/Kalb Chapter 7 Code/MadLibs1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch07/Kalb Chapter 7 Code/MadLibs1.py -------------------------------------------------------------------------------- /Ch07/Kalb Chapter 7 Code/MadLibs2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch07/Kalb Chapter 7 Code/MadLibs2.py -------------------------------------------------------------------------------- /Ch07/Kalb Chapter 7 Code/MadLibs3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch07/Kalb Chapter 7 Code/MadLibs3.py -------------------------------------------------------------------------------- /Ch07/Kalb Chapter 7 Code/MadLibs4WithLists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch07/Kalb Chapter 7 Code/MadLibs4WithLists.py -------------------------------------------------------------------------------- /Ch07/Kalb Chapter 7 Code/MadLibs5WithListsAndFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch07/Kalb Chapter 7 Code/MadLibs5WithListsAndFunction.py -------------------------------------------------------------------------------- /Ch07/Kalb Chapter 7 Code/PizzaToppings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch07/Kalb Chapter 7 Code/PizzaToppings.py -------------------------------------------------------------------------------- /Ch07/Kalb Chapter 7 Code/PizzaToppingsWithRandomChoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch07/Kalb Chapter 7 Code/PizzaToppingsWithRandomChoice.py -------------------------------------------------------------------------------- /Ch08/Kalb Chapter 8 Code/CountCharInString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch08/Kalb Chapter 8 Code/CountCharInString.py -------------------------------------------------------------------------------- /Ch08/Kalb Chapter 8 Code/FirstNameLastNamWithErrorChecking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch08/Kalb Chapter 8 Code/FirstNameLastNamWithErrorChecking.py -------------------------------------------------------------------------------- /Ch08/Kalb Chapter 8 Code/FirstNameLastName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch08/Kalb Chapter 8 Code/FirstNameLastName.py -------------------------------------------------------------------------------- /Ch08/Kalb Chapter 8 Code/IterationWithWhile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch08/Kalb Chapter 8 Code/IterationWithWhile.py -------------------------------------------------------------------------------- /Ch08/Kalb Chapter 8 Code/MonthGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch08/Kalb Chapter 8 Code/MonthGenerator.py -------------------------------------------------------------------------------- /Ch09/AddingGame1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch09/AddingGame1.py -------------------------------------------------------------------------------- /Ch09/AddingGame2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch09/AddingGame2.py -------------------------------------------------------------------------------- /Ch09/AddingGame3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch09/AddingGame3.py -------------------------------------------------------------------------------- /Ch09/AddingGame4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch09/AddingGame4.py -------------------------------------------------------------------------------- /Ch09/FileReadWrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch09/FileReadWrite.py -------------------------------------------------------------------------------- /Ch09/IncrementTestReadWrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch09/IncrementTestReadWrite.py -------------------------------------------------------------------------------- /Ch09/MultipleChoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch09/MultipleChoice.py -------------------------------------------------------------------------------- /Ch09/MultipleChoiceQuestions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch09/MultipleChoiceQuestions.txt -------------------------------------------------------------------------------- /Ch09/ReadMultiLineFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch09/ReadMultiLineFile.py -------------------------------------------------------------------------------- /Ch09/TestFileIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch09/TestFileIO.py -------------------------------------------------------------------------------- /Ch09/TestFileIOWithImport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch09/TestFileIOWithImport.py -------------------------------------------------------------------------------- /Ch09/WriteMultiLineFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch09/WriteMultiLineFile.py -------------------------------------------------------------------------------- /Ch10/Kalb Chapter 10 Code/ExchangeRatesAsString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch10/Kalb Chapter 10 Code/ExchangeRatesAsString.py -------------------------------------------------------------------------------- /Ch10/Kalb Chapter 10 Code/PowerballWithPayouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch10/Kalb Chapter 10 Code/PowerballWithPayouts.py -------------------------------------------------------------------------------- /Ch10/Kalb Chapter 10 Code/StockQuoteGoogle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch10/Kalb Chapter 10 Code/StockQuoteGoogle.py -------------------------------------------------------------------------------- /Ch10/Kalb Chapter 10 Code/StockQuoteYahooAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch10/Kalb Chapter 10 Code/StockQuoteYahooAPI.py -------------------------------------------------------------------------------- /Ch11/AdventureGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch11/AdventureGame.py -------------------------------------------------------------------------------- /Ch11/AdventureGameDynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch11/AdventureGameDynamic.py -------------------------------------------------------------------------------- /Ch11/DictStatePopulations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch11/DictStatePopulations.py -------------------------------------------------------------------------------- /Ch11/DictVocabulary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch11/DictVocabulary.py -------------------------------------------------------------------------------- /Ch11/DictsAndListsSamples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch11/DictsAndListsSamples.py -------------------------------------------------------------------------------- /Ch11/ExchangeRatesAsJSON.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch11/ExchangeRatesAsJSON.py -------------------------------------------------------------------------------- /Ch11/Grades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch11/Grades.py -------------------------------------------------------------------------------- /Ch11/GradesExample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch11/GradesExample.csv -------------------------------------------------------------------------------- /Ch11/JSONAndXMLRepeatingBlocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch11/JSONAndXMLRepeatingBlocks.py -------------------------------------------------------------------------------- /Ch11/TicTacToe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch11/TicTacToe.py -------------------------------------------------------------------------------- /Ch11/WeatherData JSON.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch11/WeatherData JSON.py -------------------------------------------------------------------------------- /Ch11/WeatherData XML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/Ch11/WeatherData XML.py -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-to-program-w-python/HEAD/contributing.md --------------------------------------------------------------------------------