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 2

2021-04-28 11:50:27 What is the difference between arguments and parameters?

Parameters are defined by the names that appear in a function definition, whereas arguments are the values actually passed to a function when calling it. Parameters define what types of arguments a function can accept. For example, given the function definition:

def func(foo, bar=None, **kwargs): pass

foo, bar and kwargs are parameters of func. However, when calling func, for example:

func(42, bar=314, extra=somevar)

the values 42, 314, and somevar are arguments.
324 views08:50
Open / Comment
2021-04-28 11:44:09 It is called bit shifting

https://wiki.python.org/moin/BitwiseOperators

Just a note though, since this is Python, sometimes people override the behaviour of those to produce a completely different result. But in it's raw state, those symbols are used for bit manipulation
316 views08:44
Open / Comment
2021-04-27 06:25:45 True. Putting a raw multiline string in a function is perfectly valid in Python
345 views03:25
Open / Comment
2021-04-26 04:33:38 TOURNAMENT: TERMINAL CHAT Timings Start: today | End: This Sunday, midnight Instructions Build a terminal chat app using this code as base: https://github.com/pymug/ARJ_SpoonfeedingSockets_APR2021/tree/main/04_chat Add deliciouspy somewhere in the…
372 views01:33
Open / Comment
2021-04-22 11:10:58 Free Online Meetup: Polishing Scraped Data

ABOUT

The upcoming Saturday 10am CET we perform a Airbnb Analytics Meetup #3 - Data Cleaning. In this session we polish already scraped data with Python, pandas, itertools and re(gex), avoid pain points and focus on best practices.

https://www.eventbrite.co.uk/e/airbnb-analytics-3-data-cleaning-how-programming-helps-investing-tickets-150721884213

ORGANISER: TechnologyX

We are an educational Programming, DevOps and Data Science open source project. We help each other in making projects to improve our tech and soft skills. We also love to organise meetups about projects we make, do code review, guiding and connect with market experts.

https://twitter.com/XTechnology5

MORE INFO

contact @czjiyomo

Next post: next week
518 views08:10
Open / Comment
2021-04-22 11:06:50 The elements of a tuple once set cannot be changed but that of a list can

x = (1, 2)
x[0] = 3

Will raise TypeError: 'tuple' object does not support item assignment.
418 views08:06
Open / Comment
2021-04-21 05:24:49 The answer is a tuple!
401 views02:24
Open / Comment