Get Mystery Box with random crypto!

delicious py

Logo of telegram channel deliciouspy — delicious py D
Logo of telegram channel deliciouspy — delicious py
Channel address: @deliciouspy
Categories: Technologies
Language: English
Country: Not set
Subscribers: 1.74K
Description from channel

py tips, tricks, articles and everything sandwiched in between 📚
#python
part of @GroupAlliance
Mail: deliciouspy@outlook.com
https://deliciouspy.github.io
Contact: @appinv

Ratings & Reviews

1.00

2 reviews

Reviews can be left only by registered users. All reviews are moderated by admins.

5 stars

0

4 stars

0

3 stars

0

2 stars

0

1 stars

2


The latest Messages

2021-05-19 05:12:58
[#PacktPub] Hands-On Predictive Analytics with Python
153 views02:12
Open / Comment
2021-05-12 21:26:28 Microsoft funds Python speed up
75 views18:26
Open / Comment
2021-05-12 21:26:09
76 views18:26
Open / Comment
2021-05-11 22:43:21 Instagram's performance-oriented fork of CPython

https://github.com/facebookincubator/cinder
120 views19:43
Open / Comment
2021-05-09 14:52:51 Data Science Real-World Use Cases – Hands On Python

FREE For 48 Hrs

Solve 3 real Business Problems, Build Robust AI, Ml , NLP and Time Series models in Real World Scenarios..

https://coursevania.com/courses/data-science-real-world-use-cases-hands-on-python/
171 views11:52
Open / Comment
2021-05-06 18:09:36 Had to share:

Calculator comes with Python

https://education.ti.com/en/products/calculators/graphing-calculators/ti-84-plus-ce-python
312 views15:09
Open / Comment
2021-05-04 23:31:13 Open FaQ:

Made this sometimes back:
https://linkolearn.com

Source:
https://github.com/linkolearn/linkolearn

Just view the source and ask questions in the comment section below as to what's not clear!

It's a hobby project.
397 views20:31
Open / Comment
2021-04-30 09:01:36 How do I share global variables across modules?

The canonical way to share information across modules within a single program is to create a special module (often called config or cfg). Just import the config module in all modules of your application; the module then becomes available as a global name. Because there is only one instance of each module, any changes made to the module object get reflected everywhere. For example:
config.py:

x = 0 # Default value of the 'x' configuration setting

mod.py:

import config config.x = 1

main.py:

import config import mod print(config.x)

Note that using a module is also the basis for implementing the Singleton design pattern, for the same reason.
506 views06:01
Open / Comment
2021-04-29 05:03:49 What are the rules for local and global variables in Python?

In Python, variables that are only referenced inside a function are implicitly global. If a variable is assigned a value anywhere within the function’s body, it’s assumed to be a local unless explicitly declared as global.
Though a bit surprising at first, a moment’s consideration explains this. On one hand, requiring global for assigned variables provides a bar against unintended side-effects. On the other hand, if global was required for all global references, you’d be using global all the time. You’d have to declare as global every reference to a built-in function or to a component of an imported module. This clutter would defeat the usefulness of the global declaration for identifying side-effects.
398 views02:03
Open / Comment
2021-04-29 05:01:19 TOURNAMENT: COMMAND LINE BROWSER

Timings

Start: today | End: This Sunday, midnight

Instructions

Build a commandline browser. A program that displays the text of any webspage (not html).
You can add options to display list of image links only or to display tables in tabular form.
You might want to add features such as text summary etc etc, be creative.
Bonus: Let users save custom user agents in files and let them choose. Add some default ones.

Add deliciouspy somewhere in the README to know that you read this line

Submit

https://forms.gle/QdUuFoU5K9AVmpTQ8

More info

https://deliciouspy.github.io#event-3

Winning

Submissions will be subjected to vote
360 views02:01
Open / Comment