I just released version v2.0 of the Blender Python Cheatsheet. This release includes three new sections covering Mesh, Curve and Math operations, a few cleanup/fixes and comes in a total of 6 (ish) pages. Get the new Blender Python Cheatsheet here: https://lnkd.in/gzrgfDEw #b3d #python #scripting
Blender Python Cheatsheet v2.0 Released
More Relevant Posts
-
Just released a5_fast 🚀 Python bindings using PyO3 for a5 Rust library 🦀 https://lnkd.in/gU_7Mqfs If you're working with A5 in Python, give it a spin. It should be considerably faster than native Python implementations. 🐍 https://lnkd.in/gdgd5Wsf #Rust #Python #PyO3 #OpenSource #A5
To view or add a comment, sign in
-
💥 Day 40 of My 70-Day Python Learning Challenge 💥 Python Libraries🤔? In simple terms, it’s a collection of built-in tools that come with Python. You don’t need to install anything extra, you just import and use them. I realized I’ve already been using some of them, like math and random, without fully thinking about it. These modules make it easier to do things like calculations, generate random values, and handle different tasks without writing everything from scratch. This made me see that Python already gives you a lot of tools to work with. You just need to know they exist and how to use them. Still learning, still growing. 🚀 #70dayschallenge #python #module
To view or add a comment, sign in
-
Rules for declaring python veriables:- 1) Must start with letters (a-z, A-Z) or underscore _ 2)Must not start with numbers (1 to .... ) 3) Variables are case sensitive ( python and Python both are different) 4) We cannot use keywords as variables ( if, def, while ...) Variable declaration is main part of any program. First impression will be starting with it, so while declaring variables need to take care. #python #learn #fast #beginner #automation
To view or add a comment, sign in
-
You can now use Ratatui in Python! 🐀 - PyRatatui — Python bindings for Ratatui - Build high-performance TUIs in Python with 35+ widgets, async & effects - Backed by Rust via PyO3 - GitHub: https://lnkd.in/dSgtbhCT #rustlang #ratatui #tui #python #library #bindings #pyo3 #terminal credit to : Orhun Parmaksız
To view or add a comment, sign in
-
-
Python Tip of the Day 🐍 Understanding file modes is essential before working with files in Python. The difference between r and r+ may look small, but it changes how your program behaves. r → Read-only (file must exist) r+ → Read & write (no file creation) Day 42 of building Python basics #Python #FileHandling #LearnPython #ProgrammingBasics #PythonTips
To view or add a comment, sign in
-
-
Day 5/100 – Python Today I worked on swapping two numbers in Python. At first, it looked like a simple problem, but it actually helped me understand an important concept — how to move data without losing it. I explored two approaches: 🔹 Using a third variable (temporary storage) 🔹 Swapping directly using Python’s tuple unpacking What I learned today: ✔ Importance of preserving data before overwriting ✔ How execution order affects the result ✔ Cleaner and more efficient ways to write code in Python ✔ Understanding how Python handles multiple assignments internally #100DaysOfCode #Python #DSA #ProblemSolving #LearningInPublic
To view or add a comment, sign in
-
-
Learning Python Conditional Logic I practiced making programs that make decisions: - Using if, elif, else statements - Writing small programs to check even/odd numbers - Building simple grade calculator based on input Python’s conditional logic opens the door to problem-solving! #Python #ConditionalStatements #LearningPython #ProblemSolving
To view or add a comment, sign in
-
I was always annoyed by Python REPL because it lacks dedent shortcut like PyCharm and VS Code. So I added one my self. Here's a how-to guide with explanation. https://lnkd.in/d7bfqYxg #python #programming #cli #coding
To view or add a comment, sign in
-
-
Python "Gotchas": Are you using mutable default arguments correctly? 🐍 In Python, default arguments are evaluated only once at the time of function definition, not every time the function is called. This can lead to unexpected "shared state" bugs that are a nightmare to debug in production. In this video, I break down: ✅ The common mistake with list=[] ✅ Why to=None is the industry standard fix ✅ How to write cleaner, bug-free Python code Have you ever been bitten by this specific Python behavior? Let’s discuss in the comments. #Python #SoftwareDevelopment #Programming #DataScience #CleanCode #TechTips
To view or add a comment, sign in
-
Python Practice: Split & Join Strings I recently solved a basic yet important problem from HackerRank using Python. Problem: Given a string of space-separated words, split the string and join the words using a hyphen (-). Solution: def split_and_join(line): words = line.split(" ") # split string into list result = "-".join(words) # join list with hyphen return result if __name__ == '__main__': line = input() result = split_and_join(line) print(result) Key Concepts: split() → Converts a string into a list join() → Combines list elements into a string Clean function design for reusability if __name__ == '__main__' for proper execution structure Example: Input: this is a string Output: this-is-a-string What I learned: Even simple problems help build strong fundamentals in string manipulation and writing clean, structured Python code. #Python #CodingPractice #HackerRank #Programming #100DaysOfCode #LearningJourney
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