🎯 Day 18 of #100DaysOfCode in Python 🐍 Today, I explored the Python Turtle Graphics module — a simple yet powerful way to create graphics and understand GUI concepts visually. I went through the official Python Turtle documentation, where I learned how to: 🟢 Draw shapes and patterns using the turtle library 🟢 Move the turtle using coordinates and angles 🟢 Customize colors, pen size, and speed 🟢 Use loops to generate creative designs It’s fascinating how Python can be used not just for backend logic, but also for building interactive graphical programs that make learning fun and visual! Next, I plan to create a few creative patterns and maybe a small animation using Turtle 🐢✨ #Python #100DaysOfCode #LearningInPublic #TurtleGraphics #GUI #CodingJourney #DeveloperGrowth
More Relevant Posts
-
New Wiki Guide: Build Video Capture Apps with GStreamer & OpenCV in Python Ever wanted to build a video capture application in Python? 🎥 Our latest wiki guide makes it straightforward, showing you how to harness the power of GStreamer and OpenCV! Here’s what you’ll gain from this step-by-step tutorial: * Learn to capture live video from your camera using GStreamer. * Process video frames efficiently with OpenCV. * Get a complete, runnable Python script to jumpstart your projects. Whether you're developing a surveillance system, a creative video filter, or just exploring multimedia programming, this guide is your go-to resource. Read the full guide and get the code here: https://lnkd.in/d5WW9Ugn #Python #GStreamer #OpenCV #VideoProcessing #DeveloperCommunity #TechTutorials
To view or add a comment, sign in
-
In Python, a generator function is a special type of function that uses the yield keyword instead of return to produce a sequence of values. But how do we actually code it? 🤔🧐 Episode 17: #yield shift101 IT Workshop Keep Learning, Keep Coding! 👩💻👨💻 Full Video https://lnkd.in/g4kRZfSK BOYA Noise-Cancelling Microphone https://lnkd.in/g-rWNn2Z 4-in-1 Selfie Stick Tripod https://lnkd.in/gG3C8jxS A4Tech Full HD Webcam https://lnkd.in/gTrXAARf WD Elements External Hard Drive https://lnkd.in/guxgD97C #IT #Programming #Python #Tutorial #Skills
To view or add a comment, sign in
-
In Python, a generator function is a special type of function that uses the yield keyword instead of return to produce a sequence of values. But how do we actually code it? 🤔🧐 Episode 17: #yield shift101 IT Workshop Keep Learning, Keep Coding! 👩💻👨💻 Full Video https://lnkd.in/gSnC5vgJ BOYA Noise-Cancelling Microphone https://lnkd.in/g8RjyWqK 4-in-1 Selfie Stick Tripod https://lnkd.in/gDMNFes3 A4Tech Full HD Webcam https://lnkd.in/gkuPz_kQ WD Elements External Hard Drive https://lnkd.in/gCsdus2c #IT #Programming #Python #Tutorial #Skills
To view or add a comment, sign in
-
I decided to build my own 2D game engine in Python—and here’s what happened! I’ve been working on pynity, a simple 2D game editor and engine built in Python. It lets you: Arrange objects and scenes with a basic editor Add Python scripts to control game behaviors It’s been a blast experimenting with object interactions, events, and seeing a tiny engine actually work. I’m still adding features like animation and sound, but it’s incredibly satisfying to watch a Python script come to life! Check it out on GitHub: https://lnkd.in/dE5qrG4G #Python #GameDevelopment #PersonalProjects #CodingFun
To view or add a comment, sign in
-
-
Ever wondered why your function prints the right result but gives you None when you try to use it elsewhere? That’s the magic (and the mystery) of return vs print() in Python. One displays, the other delivers. One is for debugging, the other is for building. Understanding this simple difference can transform how you write, test, and structure your code. Check out my short video below I walk you through clear examples that make this concept stick for life. Let’s keep growing together, line by line, logic by logic. #Python #CodingTips #LearnToCode #CodeYourWorld #SoftwareDevelopment #ProgrammingBasics #DevelopersJourney
To view or add a comment, sign in
-
Had some fun by bringing art to life with Python! I created this hypnotic pattern using the turtle library for the graphics and the colorsys library to dynamically generate that smooth color transition. It's a simple script, but it’s a great exercise in using loops and hsv_to_rgb conversion to create something visually complex. It's always so satisfying to watch the program draw it line by line. I've attached a video of the code and output. #Python #CreativeCoding #TurtleGraphics #CodeArt #Programming #Developer #Tech #Visualization
To view or add a comment, sign in
-
In this tutorial, you'll learn how to create a 3D potion holder in Blender using Python scripting and display it on a website using the <model-viewer> tag. This step-by-step guide will show you how to apply materials, add realistic HDR lighting, and export your 3D model in the glTF format for optimal web performance. For more detailed instructions, read the full blog article: https://lnkd.in/efntmzbn You can also watch the full tutorial video here: https://lnkd.in/eMtkEppf If you're looking to deepen your Python and Blender skills, check out my books Learning Python and Mastering Blender Python API. I also offer personalized one-on-one tutorials to help you grow your skills faster. #BlenderPython #PythonScripting #3DModeling #BlenderTutorial #ModelViewer #WebDevelopment #glTF #HDRLighting #Interactive3D #PythonForWeb
To view or add a comment, sign in
-
🚀 Breakout Game in Python 🎮 I’ve built a Breakout Game using Python with the help of the turtle, time, and random modules. This is another step forward in exploring game development logic and object-oriented programming concepts. In this project, I created a paddle, ball, and bricks layout where the ball bounces to break the bricks — just like the classic arcade game! Though not built with perfection, but works properly. As it is always being quoted "Make it work first, you can make it look good later" It was a great experience working with collision detection, screen updates, and game loops in Python. 🎥 Here’s a short video of the game in action! 💻 Tools & Modules: turtle, time, random ⚡ Language: Python ✈ https://lnkd.in/gAg2keZc #Python #GameDevelopment #Programming #BreakoutGame #PythonProjects
To view or add a comment, sign in
-
I built a simple yet engaging number guessing game using Python, where the player tries to guess a randomly generated number between 1 and 100. With each guess, the program provides feedback—whether to go higher or lower—until the correct number is found. 💡 What I practiced: Random number generation with random.randint() Looping and conditional logic User input handling and feedback Basic game flow and attempt tracking Code here: https://lnkd.in/dwpnN9N8
To view or add a comment, sign in
-
-
Let’s Talk About Loops in Python! Loops help us repeat actions efficiently instead of writing the same code again and again.. Here are the two main types of loops 👇 🔹 for loop – Used when you know how many times to iterate. for i in range(5): print(i) 🔹 while loop – Used when you don’t know the exact count and want to loop until a condition is true. count = 0 while count < 5: print(count) count += 1 Loops make code shorter, cleaner, and smarter which is an essential skill for every Python learner! #Python #Coding #Programming #LearnPython #Loops #TechCommunity
To view or add a comment, sign in
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development