🐍 Python Term of the Day: Unicode (Python Glossary) Unicode is a universal character encoding standard that assigns a unique number (code point) to every character in every language, plus symbols, emojis, and control characters. https://lnkd.in/gMsCtXD3
Python Unicode Character Encoding Standard
More Relevant Posts
-
🐍 Python Term of the Day: global (Python Keywords) Lets you declare that a variable used inside a function is global, which allows you to modify the variable defined outside of the current function scope. https://lnkd.in/gFHgDAdf
To view or add a comment, sign in
-
🐍 Python Term of the Day: pass (Python Keywords) A placeholder statement that allows you to write syntactically correct code without executing any operations. https://lnkd.in/e5cJqaah
To view or add a comment, sign in
-
Easily the best feature in the upcoming version of Python: lazy imports. It's also designed to be forwards-compatible (so existing code can be reworked to start using it when run on the right version of the interpreter). https://lnkd.in/eUF3tZJ9
To view or add a comment, sign in
-
Ever had your Python code fail… even when it looks correct? 🤔 The problem might be data types. For example: age = "25" print(age + 5) ❌ Error This happens because Python doesn’t automatically convert types for you. That’s where type conversion (casting) comes in. 👉 int() 👉 float() 👉 str() Understanding this will save you from many beginner errors. 💬 Have you faced this issue before?
To view or add a comment, sign in
-
-
Reverse a number in Python n = 1234 Expected reverse numbers = 4321 Python code n = 1234 rev = 0 while n > 0: digit = n % 10 rev = rev * 10 + digit n = n // 10 print(rev)
To view or add a comment, sign in
-
Anatomy of a Python Function 🐍 This animated guide visualizes how a Python function works: 1. Input: Arguments (like 'Alex') are passed into the function via parameters (name). 2. Process: The "Function Body" executes logic on that data. 3. Output: A value is computed and returned back to where the function was called.
To view or add a comment, sign in
-
-
Built a small Python script that auto-organizes files in a folder by type like images, videos, documents, code files and more. Nothing fancy, just a useful little tool I made for myself. Open-source if anyone wants it. GitHub: https://lnkd.in/gt8cEsYf #Python #Automation #OpenSource
To view or add a comment, sign in
-
In case you are looking for something interesting to read about Python, here's a stack overflow answer on why Tuples are more efficient than Lists: #python https://lnkd.in/ddzr-GuP
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