Login
Discover
Waves
Communities
Login
Signup
Topics
#python-tips
Global
Trending
Hot
New
Top
#python-tips
New
Top communities
Create your community
latest #python-tips created topics on internet
themarkymark
python-tips
2020-06-11 04:49
[Python Tips] Are you still using Pip?
Introducing pipenv
$ 44.865
341
9
2
themarkymark
STEMGeeks
2020-02-07 07:35
[Python Tips] Easy serialization with Pickle
In computer science, in the context of data storage, serialization (or serialisation) is the process of translating data structures or object state into a format that can be stored (for example, in a file
$ 16.957
435
6
3
themarkymark
development
2019-12-30 15:40
[Python Tips] Requests
Requests is a powerful and easy to use HTTP library for Python Need to get HTML data? Need to interact with an API? Requests can do that. While Python has a built-in library urllib3 for these situations,
themarkymark
development
2019-11-13 17:14
[Python Tips] The New Walrus Operator
Walrus Operator The Walrus Operator is a new assignment operator announced in Python 3.8 that looks like a walrus. The walrus operator is used to simplify code when you need an expression while storing
king-cobra
ecency
2026-06-28 02:04
Promoted
Saturday 5km
Hi guys, today's weather was hot and humid at 28 degree celsius in my hometown. Our country is in draught season now and I ran 5km at easy pace in the neighbourhood near my plac and called it a day. Now
themarkymark
development
2019-09-22 17:27
!
Downvoted by users, Reveal content
[Python Tips] Caching data with CacheTools
My Python Tips Series f-strings in Python 3.6 Underscores in numeric literals A better interactive shell Secrets Module - New in 3.6 PEP 8 Slices Named Tuples Destructuring Counter Type Annotation Jupyter
themarkymark
utopian-io
2019-01-04 03:50
[Python Tips] Beyond print()
Beyond print() print() is a great quick and dirty way to log to the console in python. Even senior developers will use print() all the time. For anything more than a quick app you should be using a real
themarkymark
utopian-io
2018-09-04 20:59
[Python Tips] Apscheduler
Introducing Apscheduler Apscheduler is a job manager (similar to cron) to run sections of code on a schedule. I use it frequently to manage jobs that need to run at a set interval. Apscheduler can be used
themarkymark
programming
2018-07-02 04:13
[Python Tips] Knowing what exists
Being a good programmer isn't just about knowing how to do everything or even being very good at it. One of the most valuable skills of a good programmer is just knowing something exists. Sometimes it
darth-azrael
photography
2026-06-24 23:28
Promoted
Vintage Photos - Lot 6 (321-324)
These photos were likely taken in Michigan in the 1950s.
themarkymark
programming
2018-06-28 04:15
[Python Tips] DRY Programming
This really isn't about Python directly, but it is an important topic every developer should know. DRY (Don't Repeat Yourself) is a popular programming concept of avoiding repeat code. The main goal of
themarkymark
programming
2018-06-10 01:43
[Python Tips] Expiring Dict
Expiring Dict Expiring dict is a very useful library for caching data via ordered dictionaries. It works similar to a regular dictionary but will cache data for a short period of time. It can be used as
themarkymark
programming
2018-05-23 03:21
[Python Tips] Virtual Environments
Python Virtual Environment Most beginner developers have a hard time understanding virtual environments, why they are useful and how to use them. I am going to explain why you want to use them, and then
themarkymark
programming
2018-05-21 10:58
[Python Tips] Getting Help
There are a few handy functions built into Python to help the developer get more information about an object. help() If you want to get the documentation on an object or function you can use the help()
deanliu
HIVE CN 中文社区
2026-06-29 09:40
Promoted
📜 金澤城,一切從這裡開始 ✨🕋 城下町手札 01 💴💛
來到金澤,最核心、最中心的,自然是這一座古代的城,而現今只是個觀光景點的地方。 我從各個來源稍微瞭解了一下這裡的歷史,用我的話說給你聽: 金澤城最早的前身是淨土真宗信徒的自治武裝政權,在1546年建立的。所以,金澤這座城,最初不是武士建的,是宗教平民建的,自治了約一個世紀。1583年,前田利家入主,才正式改建為武家城郭,但那個住民自治的底色一直存在著。 前田家石高百萬石(AKA
themarkymark
programming
2018-05-10 01:36
[Python Tips] Jupyter Notebooks
This is probably my favorite tip to offer. If you haven't heard of Jupyter Notebooks, this is going to be a huge game changer for you. Source While I only use Jupyter Notebooks with Python, I know it can
themarkymark
programming
2018-05-07 20:32
[Python Tips] Type Annotation
Python is a dynamic language that does not require you to specify data types as you create variables or supply return types. This makes development a lot easier but can introduce unexpected bugs when things
themarkymark
programming
2018-05-02 03:44
[Python Tips] Counter
Counter Counter is a collections object that keeps count of how many times similar values are found. Counter is part of the collections module and is a default package, so you do not need to install it.
themarkymark
programming
2018-04-27 18:23
[Python Tips] Destructuring
This is an easy tip, but an extremely useful feature of Python. Destructuring lists Let's take the following sample list: my_list = ['a', 'b','c'] I want to put each list element into their own variable,
skiptvads
Scrobble.life
2026-06-26 18:56
Promoted
The Super Mario Galaxy Movie (2026) - Empty Visual Space Noise - REVIEW
Source Taking your kids to see a video game movie on a Saturday is one of those parenting situations where you go in fully prepared to suffer through it for their sake, you have been doing this for years,
themarkymark
programming
2018-04-24 03:10
[Python Tips] Named Tuples
What is a tuple? Tuples are very similar to lists, but it is unable to be changed (immutable). This provides a tiny performance and memory savings. More importantly provides a hint to the interpreter and
themarkymark
programming
2018-04-18 18:13
[Python Tips] Slices
This isn't as much of a tip but a walkthrough on how to use slices and all the cool things you can do with them. Slices are a very powerful feature available to Python developers that are worth understanding
themarkymark
programming
2018-04-15 09:04
[Python Tips] PEP 8
PEP what? PEP 8 is a coding standard for Python by Guido van Rossum. It defines a set of guidelines for writing Python code in a universally accepted writing style. Any good developer worth their salt
themarkymark
programming
2018-04-08 13:31
[Python Tips] Secrets Module - New in 3.6
Another new Python 3.6 feature is the addition of the secrets module, a replacement for random when generating cryptographically strong random numbers. When creating random numbers for with passwords or