Tutorials
Hands-On Python
Search
⌃K
Hands-On Python Tutorial For Real-World Business Analytics Problems
Preface
Preflight Checklist
Language Basics
Lesson 1. Obligatory Hello World
Lesson 2. Code Comments
Lesson 3. Data Types
Lesson 4. Variables
Lesson 5. String Concatenation
Lesson 6. Arithmetic Operators
Lesson 7. Making Decisions
Lesson 8. Control Flow With if-elif-else
Lesson 9. Control Flow With while
Lesson 10. Data Structures Part I: List
Lesson 11. Data Structures Part II: Tuples
Lesson 12. Data Structures Part III: Dictionaries
Lesson 13. Looping With for
Lesson 14. Functions
Lesson 15. Importing Modules
Lesson 16. Python Programming Standards
Advanced Topics
Solutions To Real World Problems
Powered By
GitBook
Lesson 1. Obligatory Hello World
You know how we do! Gotta start it off right with the Hello World!
Examples
Example #1: Hello World!
print
(
"Hello World!"
)
Now you try it!
Don't copy and past. Type the code yourself!
Previous
Language Basics
Next
Lesson 2. Code Comments
Last modified
1yr ago