#100daysofcodepython 검색 결과
Opportunity comes but once...Not having PC is not an excuse for not learning a skill. Make use of every little chance that comes your way. 🙈 The long and short is that I installed Kali Linux on my phone to help me better at programming.👨💻 #100daysofcodepython #codinglife

I just completed 100 days of continuous contribution on github. Commits include: - Django based development & bug fixes - Hackerrank solution - Explored some JS tasks #100DaysOfCode #100daysofcodepython #Python

#100daysofcodepython 🚀 Day 35: Pydantic - Easy validation and serialization/deserialization🐍 Learning about model configuration, aliasing, serialization, custom validators, specialized types, annotated types, computed fields and complex models. #Python #Pydantic


Day 17 of #100DaysOfCode #100daysofcodepython More Python class practice. Here's a self-contained script that prints out the router and the switches info, updates, and then prints out the amended information. Next steps are prompt for input and export to file.


Day 14 of #100DaysOfCode #100daysofcodepython Even more API calls with JSON. Having fun pulling information with an NHL API.

#100daysofcodepython 🚀 Day 32 of #100DaysOfCode in Python: Mastering Advanced Concepts Learnt about Iterators, generators, closure function and decorators. #Python #CodingJourney #Iterators #Generators #Decorators #CodeEfficiency



On day 21 of my #100DaysOfCode I did more control flow in python. Udemy made it look easy but am loving the Alx challenge 🤗 #100daysofcodepython

On day 20 of my #100DaysOfCode I read, read and read 😭 still doing alx tasks. but it was fun learning about easter eggs in programming and the zen of Python. #100DaysOfCodepython

I enjoying working on OOP, in the past 4 days, I have been able to recreate some of childhood games.#100daysofcodepython




#100daysofcodepython 🐍 Day 42 of #100DaysOfCode -Selenium 🚀 Learned about the selenium module in Python, its use cases, web driver, methods, and locators like CSS selector, ID, NAME, etc. Projects: Automation of cookie-clicker game Couple of challenges #Selenium #Automation


#100DaysOfCodepython #100DiasDeCodigo #pythoncode En el día 66, hice mi primera red neuronal usando #TensorFlow y #Keras asi como aprender a visualizar los datos con #Seaborn y #Matplotlib es un modelo simple que se entrena solo con 100 epochs


#100DaysOfCodepython #100DiasDeCodigo #pythoncode En el día 65, implementé un modal para usuarios, utilizando Djoser para gestionar activación, inicio de sesión y generación de tokens. Realicé pruebas con Postman,se que es algo básico pero aun asi me resultó emocionante.🥳🥳



🚀 Day 58 of Python: Working with Strings and Regex in Pandas! 🚀 #100daysofcodepython Hey Python enthusiasts! 🎉 Today we’re diving into string methods and regex patterns to use in Pandas. #Python #DataScience #Regex #Pandas #DataAnalysis #Programming




#100daysofcodepython 🚀Day 50 of #Python: Mastering Alembic for #Database Versioning Alembic: - Automate database schema migrations with Alembic. - Seamlessly manage database versioning and schema upgrades/downgrades. - Ensure data integrity across all environments. #alembic

🚀Day 56 of Python: Group By and Pivot/Unpivot operations in Pandas🚀 #100daysofcodepython - Aggregation with groupby object - Iterating over groupby object, getting a subgroup - groupby() + agg()/filter()/apply()/transform() - pivot(), melt(), and pivot_table() #Python #Pandas

For day 32 and 33 of #100daysofcodepython , I learnt to used the 'smtplib' library together with the 'datetime' module to automate sending emails and perform other funstions. I also learnt to request data from website APIs with the 'request' library.

#100daysofcodepython 🚀Days 38 to 40 of the Python Journey! 🚀 I delved deep into web development learning about HTML, CSS, and created a Blog App with React and FASTAPI. I deployed FASTAPI in Azure app service while react front-end in container apps in Azure. #FullStack #Azure
#100DaysOfCodepython #100DiasDeCodigoel reto de 100 días en mi día 74 y 75 desarrolado un bot de telegram una funcion la cual me permita crear los productos en en mi woocomerce asi como actualizarlos tambien hice el consumo de mi archivo .env


#100DaysOfCodepython #100DiasDeCodigoel reto de 100 días en mi día 73 desarrollando un bot para Wordpress usando el api de clima agregue una función para que envié el reporte del clima cada 10 mínutos también agregue una función espejo que todo lo que ponga ella solo lo regrese



#100DaysOfCodepython #100DiasDeCodigo el reto de 100 días en mi dia 72 desarrolando un bot para wopress woocomerce agregando comando basicos y funcines para agregar Documentacion : pytba.readthedocs.io/en/latest/inst… Docuementacion : core.telegram.org/bots Documentacion : woocomerce api




*Day 3 of 14-Day trial by fire 🔥 Challenge on machine learning and Ai Training Let’s kickstart your AI journey the right way! What's AI? What's ML? What's DL? Let’s break it down: #AI #MachineLearning #100daysofcodepython
#100DaysOfCodepython #100DiasDeCodigo retomado el reto de 100 días en mi dia 71 haciendo una conexión entre un api(yugi api) y un archivo de excel en woocommerce de worpress , creo que también iniciare a tomar clases de woopress


🚀 Day 58 of Python: Working with Strings and Regex in Pandas! 🚀 #100daysofcodepython Hey Python enthusiasts! 🎉 Today we’re diving into string methods and regex patterns to use in Pandas. #Python #DataScience #Regex #Pandas #DataAnalysis #Programming




🚀 Day 57: Mastering Dates and Times in Python 🗓️ #100daysofcodepython Python's datetime Module: Key Classes: date, time, datetime Convert string to datetime: dt = datetime.datetime.strptime("2023-08-26", "%Y-%m-%d") dt = dateutil.parser.parse(string_date)
🚀Day 56 of Python: Group By and Pivot/Unpivot operations in Pandas🚀 #100daysofcodepython - Aggregation with groupby object - Iterating over groupby object, getting a subgroup - groupby() + agg()/filter()/apply()/transform() - pivot(), melt(), and pivot_table() #Python #Pandas

🚀Day 55 of Python: Diving into MultiIndex with Pandas!🚀 #100daysofcodepython --> Creating MultiIndex 3 ways: 1. Providing index_col parameter in pd.read_csv() 2. Providing index parameter in pd.DataFrame(data=df, index=[a_col, b_col]) 3. set_index()
Day 54: Mastering DataFrame Aggregations and Transformations in Python #100daysofcodepython --> Aggregation with agg() 1) Simple Mean Calculation: df.select_dtypes(np.number).agg('mean', axis=0) This calculates the mean of all numeric columns in the DataFrame.
🚀 Day 53 of Python Code: Mastering DataFrames 🚀 #100daysofcodepython 🛠️ Creating DataFrames: Dict of Lists: pd.DataFrame({'col1': [1,2], 'col2': [3,4]}) Dict of Tuples: pd.DataFrame({'col1': (1,2), 'col2': (3,4)}) #Python #DataScience #Pandas
🚀 Day 52: Deep Dive into Pandas Series 🚀 #100daysofcodepython 📊 🔍 Descriptive Statistics: s.mean(), s.median(), s.mode(): Mean, median, and mode of the series. s.min(), s.max(): Minimum and maximum values. s.std(), s.var(): Standard deviation and variance. #Python
🚀 Day 51 of Python: Let's Dive into Pandas Series! 🚀 #100daysofcodepython A series is a one-dimensional labeled array. --> Creating a Series: s = pd.Series(data=['name1', 'name2', 'name3'], [index]=pd.RangeIndex(start=0, stop=3, step=1), [name]=None, [type]='object')
#100DaysOfCodepython #100DiasDeCodigo #pythoncodeEn el día 70 retomado el reto de 100 días de python fui lo ultimo mirando lo basico de numpy y comenze a ver pandas tambien comennze a usar la extencion de jupiter en el vscode y inicie con las Series




#100DaysOfCodepython #100DiasDeCodigo #pythoncodeEn el día 69 retomado el reto de 100 días de pues de casi 7 meses para retomarlo con calma inicie con la librería de pandas y el funcionamiento de los array con pandas no fue nada complicado(rumbo a ser data analist) 🥳




#100daysofcodepython 🚀Day 50 of #Python: Mastering Alembic for #Database Versioning Alembic: - Automate database schema migrations with Alembic. - Seamlessly manage database versioning and schema upgrades/downgrades. - Ensure data integrity across all environments. #alembic

#100daysofcodepython 🚀 Day 45 to 49 of Python Journey with FastAPI and React! --> Created InstagramClone project with functionalities of post creation, deletion, comments, user login/logout/signup with Oauth in FastAPI and react frontend. deployed at: …rontendinstaclone-latest.onrender.com
Post 2: List Comprehension ✨ List comprehensions are more Pythonic and preferred for their readability and conciseness. #Python #PythonCommunity #100daysofcodepython #100DaysOfCode

#100daysofcodepython 🚀 Day 44 of Python - Automation with Selenium 🚀 1. 🐦 Twitter Automation: Automation of tweet 2. 🏠 RentPropertyData-Zillow: Scraping data from Zillow and filling details in Excel via Google form using selenium. #PythonAutomation #Selenium #BeautifulSoup

#100daysofcodepython 🚀 Day 43 of my Python Journey: Automation with Selenium 🚀 I created 2 automation projects with selenium. 1. LinkedIn applications automation 2. Instagram Follower automation #PythonAutomation #Selenium #Productivity #AutomationJourney
Hurry up! Free for 24 hours. ✅ Python ✅ Node.js ✅ React.js ✅ JavaScript ✅ Oops in C++ ✅ HR interview ✅ Machine learning ✅ Cloud Computing ✅ Computer networks To Get it: 1. Follow me (so that i can DM you 2. Repost 3. Comment "handwritten"

Awesome set of #DataScience #MachineLearning graphics from #100DaysOfMLCode: github.com/Avik-Jain/100-… #BigData #DataScientists #Algorithms #Coding #Python




day 48 of #100DaysOfCode made some improvements on the UI. you guys like the color or is there anything you would want me to work on ?

#dino8bit โค้ดแต้มฟรี 20💵 50💎 เก่า-ใหม่ ไม่ต้องฝาก ไม่ต้องแชร์ หากระบบแจ้ง👉ไม่พบ=โค้ดเต็ม โค้ดตัวเดียวได้ทั้ง 2 FDDINOFREE สมัคร/login 👉 citly.me/COWnf 📢รับไม่ทันโพสต์นี้ ✅รอรับโพสต์ถัดไป🙏ขอบคุณ♥️


お疲れさまです。遅くなりましたが今日もプログラミング学習を始めます。Claude Codeを使ってPythonの学習。『Python 2年生 データ分析のしくみ』を進めていきます。

DAY 50 ✅ #100DaysOfCode - Completed 11-20 Lectures in Python !! - Covered Inbuilt data Structures !! - OOPS in Pythons !! - Decorators in Python #TUFWinterArc


🎯 DAY 62 of #100DaysOfCode >Solved 1 easy Question on leetcode of sort and finding target >Revised the concept of use callback in react >Completed the concept of recursion array @kunalstwt 💻💻 Let's go for more 👨💻👨💻 #buildinginpublic #CodingJourney #codingforbeginners



🎯DAY 61 of #100DaysOfCode >Solved 1 question @geeksforgeeks 1 medium level question on @LeetCode >Studied the concept of finding elements and recursive sorting @kunalstwt 💻💻 Today , i gonna build simple calculator as practice 👍 #buildinpublic #CodingJourney #CodingLife


Something went wrong.
Something went wrong.
United States Trends
- 1. #เพียงเธอตอนจบ 264K posts
- 2. LINGORM ONLY YOU FINAL EP 261K posts
- 3. Good Friday 51.1K posts
- 4. #FanCashDropPromotion N/A
- 5. #FridayVibes 5,179 posts
- 6. Ayla 40.8K posts
- 7. Tawan 68.9K posts
- 8. Happy Friyay 1,050 posts
- 9. Cuomo 109K posts
- 10. Justice 336K posts
- 11. Dorado 4,231 posts
- 12. #FursuitFriday 12.2K posts
- 13. Shabbat Shalom 2,309 posts
- 14. Mamdani 258K posts
- 15. RED Friday 2,609 posts
- 16. Flacco 102K posts
- 17. Finally Friday 2,425 posts
- 18. #FridayFeeling 2,207 posts
- 19. New Yorkers 45.9K posts
- 20. Arc Raiders 3,643 posts