Permalink
base repository: SonaniAkshit/Python-for-Data-Science
Failed to load repositories. Confirm that selected base ref is valid, then try again.
base: main@{1day}
Choose a base ref
...
head repository: SonaniAkshit/Python-for-Data-Science
Failed to load repositories. Confirm that selected head ref is valid, then try again.
compare: main
Choose a head ref
  • 13 commits
  • 4 files changed
  • 1 contributor

Commits on Jun 25, 2025

  1. Add section on sorting lists in Python

    Introduced a new section explaining how to sort lists in Python using sort() and sorted(), including examples for ascending, descending, case-insensitive, and custom key sorting. Added explanations, code samples, and tips to clarify the differences between in-place and returned sorted lists.
    @SonaniAkshit
    SonaniAkshit committedJun 25, 2025
    Configuration menu
    Copy the full SHA
    e17348cView commit details
    Browse the repository at this point in the history
  2. Add section on copying lists in Python

    Introduced a new section explaining different ways to copy lists in Python, including using copy(), list(), and the pitfalls of using '='. Added code examples and tips to clarify the differences between shallow copies and references.
    @SonaniAkshit
    SonaniAkshit committedJun 25, 2025
    Configuration menu
    Copy the full SHA
    25e15f6View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2025

  1. Add section on joining lists in Python

    Introduced a new section demonstrating multiple ways to join lists in Python, including using the + operator, append() in a loop, extend(), and list comprehensions. Each method includes code examples and explanations to help beginners understand different approaches to merging lists.
    @SonaniAkshit
    SonaniAkshit committedJun 26, 2025
    Configuration menu
    Copy the full SHA
    0a3bfafView commit details
    Browse the repository at this point in the history
  2. Add section on nested lists to Lists notebook

    Introduced a new section explaining Python nested lists, including how to create, access, loop through, and modify them. Added code examples, explanations, and tips for working with nested lists, making the notebook more comprehensive for beginners.
    @SonaniAkshit
    SonaniAkshit committedJun 26, 2025
    Configuration menu
    Copy the full SHA
    85c8ebfView commit details
    Browse the repository at this point in the history
  3. Add section on 2D list comprehensions in Python

    Expanded the lists guide with examples and explanations of 2D (nested) list comprehensions, including creating a 2D grid, building a multiplication table, and flattening a 2D list. Also added summary tips and a quick reference table for Python list methods.
    @SonaniAkshit
    SonaniAkshit committedJun 26, 2025
    Configuration menu
    Copy the full SHA
    550f009View commit details
    Browse the repository at this point in the history
  4. Revise introduction and example for Python lists

    Updated the introductory section to clarify list properties (ordered, mutable, allows duplicates) and simplified the explanation. Removed unnecessary import and updated the code example for better clarity.
    @SonaniAkshit
    SonaniAkshit committedJun 26, 2025
    Configuration menu
    Copy the full SHA
    View commit details
    Browse the repository at this point in the history
  5. Add beginner's guide notebook for Python tuples

    Introduces a Jupyter notebook covering Python tuples, including creation, single-item tuples, indexing, looping, membership checks, length, mixed data types, and tuple constructors. Includes code examples and explanations for beginners.
    @SonaniAkshit
    SonaniAkshit committedJun 26, 2025
    Configuration menu
    Copy the full SHA
    af79886View commit details
    Browse the repository at this point in the history
  6. Update workspace.xml with new work items

    Added recent work items to .idea/workspace.xml to reflect updated task activity.
    @SonaniAkshit
    SonaniAkshit committedJun 26, 2025
    Configuration menu
    Copy the full SHA
    a744ea1View commit details
    Browse the repository at this point in the history
  7. Add section on updating tuples in Python

    Expanded the tuples guide with examples and explanations on how to update, add, and remove items from tuples using list conversion and tuple concatenation. Also improved code output messages and added tips for working with immutable tuples.
    @SonaniAkshit
    SonaniAkshit committedJun 26, 2025
    Configuration menu
    Copy the full SHA
    9556705View commit details
    Browse the repository at this point in the history
  8. Add section on tuple unpacking in Python

    Expanded the tuples guide with explanations and examples of tuple unpacking, including basic unpacking, use of the asterisk for collecting values, and related tips. Added code cells and markdown to illustrate unpacking techniques and common pitfalls.
    @SonaniAkshit
    SonaniAkshit committedJun 26, 2025
    Configuration menu
    Copy the full SHA
    2fe2942View commit details
    Browse the repository at this point in the history
  9. Add section on looping through tuples in Python

    Expanded the tuples guide with examples and explanations for looping through tuples using for loops, index-based iteration, and enumerate(). This addition helps beginners understand how to iterate over tuples and when to use each technique.
    @SonaniAkshit
    SonaniAkshit committedJun 26, 2025
    Configuration menu
    Copy the full SHA
    7e0d8faView commit details
    Browse the repository at this point in the history
  10. Add section on joining and repeating tuples

    Expanded the tuples guide with examples and explanations for joining tuples using the + operator, joining multiple tuples, and repeating tuples with *. Also added a section on tuple methods, including count() and index(), with code examples and tips.
    @SonaniAkshit
    SonaniAkshit committedJun 26, 2025
    Configuration menu
    Copy the full SHA
    2a49e42View commit details
    Browse the repository at this point in the history
  11. Add beginner's guide notebook for Python sets

    Introduces a new Jupyter notebook covering Python sets, including creation, properties, adding/removing items, and common set operations with code examples and explanations for beginners.
    @SonaniAkshit
    SonaniAkshit committedJun 26, 2025
    Configuration menu
    Copy the full SHA
    bfee4ebView commit details
    Browse the repository at this point in the history
Loading