Today I nailed my first Python function test! Spent 2 hours debugging syntax errors and finally got the output right—small win that fuels my coding journey. #LearningPython
Just nailed my first Python function! Wrote a simple script to sort a list in 5 mins—small win but building momentum for my coding journey. #LearningPython#StudyProgress,
Just nailed my first Python function! Wrote a small script to automate daily to-do list sorting – feels like learning a superpower right now. #LearningPython#DailyWin
Just nailed the first set of Python data visualization exercises! Finally get how Matplotlib bar charts work—time to level up to seaborn tomorrow. #LearningPython#DataScience,
Just nailed my first Python function today! Finally getting how to turn code into useful tools – learning one small step at a time, and it’s so worth it. #LearningPython#CodingJourney,
Crushed my first Python mini-project today—built a to-do list with basic CRUD functions! Small win but such a satisfying step forward in coding. #LearningPython#CodingJourney,
Just aced my first Python mini-project today! Went from zero to building a simple to-do app in 4 hours. Small win but big motivation to keep coding every day. #LearningPython#CodingJourney,
Just crushed my first Python function practice! Still stumbling over syntax at times, but every small win counts. Grateful for quick tutorials to fix messy code. #LearningPython#StudyDiary
Today I spent the entire day learning about strings and playing around with different types of string concepts. And from this I learned that the main purpose of strings is not just writing text in a simple way but also helping us to understand, clean, control and process text in smarter ways with python.
Here are what I covered:--
upper() → converts all letters into CAPITAL letters
lower() → converts all letters into small letters
strip() → removes extra spaces from text
split() → breaks a sentence into separate words or pieces
join() → joins multiple words or items into one string
replace() → replaces an old word with new one
find() → finds the position of a word or letter inside text
count() → counts how many times a word or letter appears
startswith() → checks what word or letter the text starts with
f-strings → used to easily add variables into a sentence
Slicing str[::-1] → reverses a string/text
#python#learningpython#coding