Skip to content

Commit 17c5abd

Browse files
committed
Make a programme that determines the statistics of a number
1 parent de34543 commit 17c5abd

File tree

1,576 files changed

+282993
-15
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,576 files changed

+282993
-15
lines changed

.idea/.name

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

+5-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from collections import Counter
2+
3+
n = input()
4+
s = Counter(n)
5+
print(''.join([str(s.get(str(i), 0)) for i in range(10)])
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Make a program that determines the statistics of a number - the number of
2+
the use of different digits in its entry (6 -12 lines)
3+
4+
Example:
5+
Suppose we enter the number 3246789245
6+
And at the end of the program should be a string 0021111111 which means that the entered number of 0 zeros, 0 units, 2 deuce, 1 triplet, and so on to
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,222 @@
1+
# don't import any costly modules
2+
import sys
3+
import os
4+
5+
6+
is_pypy = '__pypy__' in sys.builtin_module_names
7+
8+
9+
def warn_distutils_present():
10+
if 'distutils' not in sys.modules:
11+
return
12+
if is_pypy and sys.version_info < (3, 7):
13+
# PyPy for 3.6 unconditionally imports distutils, so bypass the warning
14+
# https://foss.heptapod.net/pypy/pypy/-/blob/be829135bc0d758997b3566062999ee8b23872b4/lib-python/3/site.py#L250
15+
return
16+
import warnings
17+
18+
warnings.warn(
19+
"Distutils was imported before Setuptools, but importing Setuptools "
20+
"also replaces the `distutils` module in `sys.modules`. This may lead "
21+
"to undesirable behaviors or errors. To avoid these issues, avoid "
22+
"using distutils directly, ensure that setuptools is installed in the "
23+
"traditional way (e.g. not an editable install), and/or make sure "
24+
"that setuptools is always imported before distutils."
25+
)
26+
27+
28+
def clear_distutils():
29+
if 'distutils' not in sys.modules:
30+
return
31+
import warnings
32+
33+
warnings.warn("Setuptools is replacing distutils.")
34+
mods = [
35+
name
36+
for name in sys.modules
37+
if name == "distutils" or name.startswith("distutils.")
38+
]
39+
for name in mods:
40+
del sys.modules[name]
41+
42+
43+
def enabled():
44+
"""
45+
Allow selection of distutils by environment variable.
46+
"""
47+
which = os.environ.get('SETUPTOOLS_USE_DISTUTILS', 'local')
48+
return which == 'local'
49+
50+
51+
def ensure_local_distutils():
52+
import importlib
53+
54+
clear_distutils()
55+
56+
# With the DistutilsMetaFinder in place,
57+
# perform an import to cause distutils to be
58+
# loaded from setuptools._distutils. Ref #2906.
59+
with shim():
60+
importlib.import_module('distutils')
61+
62+
# check that submodules load as expected
63+
core = importlib.import_module('distutils.core')
64+
assert '_distutils' in core.__file__, core.__file__
65+
assert 'setuptools._distutils.log' not in sys.modules
66+
67+
68+
def do_override():
69+
"""
70+
Ensure that the local copy of distutils is preferred over stdlib.
71+
72+
See https://github.com/pypa/setuptools/issues/417#issuecomment-392298401
73+
for more motivation.
74+
"""
75+
if enabled():
76+
warn_distutils_present()
77+
ensure_local_distutils()
78+
79+
80+
class _TrivialRe:
81+
def __init__(self, *patterns):
82+
self._patterns = patterns
83+
84+
def match(self, string):
85+
return all(pat in string for pat in self._patterns)
86+
87+
88+
class DistutilsMetaFinder:
89+
def find_spec(self, fullname, path, target=None):
90+
# optimization: only consider top level modules and those
91+
# found in the CPython test suite.
92+
if path is not None and not fullname.startswith('test.'):
93+
return
94+
95+
method_name = 'spec_for_{fullname}'.format(**locals())
96+
method = getattr(self, method_name, lambda: None)
97+
return method()
98+
99+
def spec_for_distutils(self):
100+
if self.is_cpython():
101+
return
102+
103+
import importlib
104+
import importlib.abc
105+
import importlib.util
106+
107+
try:
108+
mod = importlib.import_module('setuptools._distutils')
109+
except Exception:
110+
# There are a couple of cases where setuptools._distutils
111+
# may not be present:
112+
# - An older Setuptools without a local distutils is
113+
# taking precedence. Ref #2957.
114+
# - Path manipulation during sitecustomize removes
115+
# setuptools from the path but only after the hook
116+
# has been loaded. Ref #2980.
117+
# In either case, fall back to stdlib behavior.
118+
return
119+
120+
class DistutilsLoader(importlib.abc.Loader):
121+
def create_module(self, spec):
122+
mod.__name__ = 'distutils'
123+
return mod
124+
125+
def exec_module(self, module):
126+
pass
127+
128+
return importlib.util.spec_from_loader(
129+
'distutils', DistutilsLoader(), origin=mod.__file__
130+
)
131+
132+
@staticmethod
133+
def is_cpython():
134+
"""
135+
Suppress supplying distutils for CPython (build and tests).
136+
Ref #2965 and #3007.
137+
"""
138+
return os.path.isfile('pybuilddir.txt')
139+
140+
def spec_for_pip(self):
141+
"""
142+
Ensure stdlib distutils when running under pip.
143+
See pypa/pip#8761 for rationale.
144+
"""
145+
if self.pip_imported_during_build():
146+
return
147+
clear_distutils()
148+
self.spec_for_distutils = lambda: None
149+
150+
@classmethod
151+
def pip_imported_during_build(cls):
152+
"""
153+
Detect if pip is being imported in a build script. Ref #2355.
154+
"""
155+
import traceback
156+
157+
return any(
158+
cls.frame_file_is_setup(frame) for frame, line in traceback.walk_stack(None)
159+
)
160+
161+
@staticmethod
162+
def frame_file_is_setup(frame):
163+
"""
164+
Return True if the indicated frame suggests a setup.py file.
165+
"""
166+
# some frames may not have __file__ (#2940)
167+
return frame.f_globals.get('__file__', '').endswith('setup.py')
168+
169+
def spec_for_sensitive_tests(self):
170+
"""
171+
Ensure stdlib distutils when running select tests under CPython.
172+
173+
python/cpython#91169
174+
"""
175+
clear_distutils()
176+
self.spec_for_distutils = lambda: None
177+
178+
sensitive_tests = (
179+
[
180+
'test.test_distutils',
181+
'test.test_peg_generator',
182+
'test.test_importlib',
183+
]
184+
if sys.version_info < (3, 10)
185+
else [
186+
'test.test_distutils',
187+
]
188+
)
189+
190+
191+
for name in DistutilsMetaFinder.sensitive_tests:
192+
setattr(
193+
DistutilsMetaFinder,
194+
f'spec_for_{name}',
195+
DistutilsMetaFinder.spec_for_sensitive_tests,
196+
)
197+
198+
199+
DISTUTILS_FINDER = DistutilsMetaFinder()
200+
201+
202+
def add_shim():
203+
DISTUTILS_FINDER in sys.meta_path or insert_shim()
204+
205+
206+
class shim:
207+
def __enter__(self):
208+
insert_shim()
209+
210+
def __exit__(self, exc, value, tb):
211+
remove_shim()
212+
213+
214+
def insert_shim():
215+
sys.meta_path.insert(0, DISTUTILS_FINDER)
216+
217+
218+
def remove_shim():
219+
try:
220+
sys.meta_path.remove(DISTUTILS_FINDER)
221+
except ValueError:
222+
pass
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__import__('_distutils_hack').do_override()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import os; var = 'SETUPTOOLS_USE_DISTUTILS'; enabled = os.environ.get(var, 'local') == 'local'; enabled and __import__('_distutils_hack').add_shim();
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Copyright (c) 2008-present The pip developers (see AUTHORS.txt file)
2+
3+
Permission is hereby granted, free of charge, to any person obtaining
4+
a copy of this software and associated documentation files (the
5+
"Software"), to deal in the Software without restriction, including
6+
without limitation the rights to use, copy, modify, merge, publish,
7+
distribute, sublicense, and/or sell copies of the Software, and to
8+
permit persons to whom the Software is furnished to do so, subject to
9+
the following conditions:
10+
11+
The above copyright notice and this permission notice shall be
12+
included in all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
Metadata-Version: 2.1
2+
Name: pip
3+
Version: 22.1.2
4+
Summary: The PyPA recommended tool for installing Python packages.
5+
Home-page: https://pip.pypa.io/
6+
Author: The pip developers
7+
Author-email: [email protected]
8+
License: MIT
9+
Project-URL: Documentation, https://pip.pypa.io
10+
Project-URL: Source, https://github.com/pypa/pip
11+
Project-URL: Changelog, https://pip.pypa.io/en/stable/news/
12+
Platform: UNKNOWN
13+
Classifier: Development Status :: 5 - Production/Stable
14+
Classifier: Intended Audience :: Developers
15+
Classifier: License :: OSI Approved :: MIT License
16+
Classifier: Topic :: Software Development :: Build Tools
17+
Classifier: Programming Language :: Python
18+
Classifier: Programming Language :: Python :: 3
19+
Classifier: Programming Language :: Python :: 3 :: Only
20+
Classifier: Programming Language :: Python :: 3.7
21+
Classifier: Programming Language :: Python :: 3.8
22+
Classifier: Programming Language :: Python :: 3.9
23+
Classifier: Programming Language :: Python :: 3.10
24+
Classifier: Programming Language :: Python :: Implementation :: CPython
25+
Classifier: Programming Language :: Python :: Implementation :: PyPy
26+
Requires-Python: >=3.7
27+
License-File: LICENSE.txt
28+
29+
pip - The Python Package Installer
30+
==================================
31+
32+
.. image:: https://img.shields.io/pypi/v/pip.svg
33+
:target: https://pypi.org/project/pip/
34+
35+
.. image:: https://readthedocs.org/projects/pip/badge/?version=latest
36+
:target: https://pip.pypa.io/en/latest
37+
38+
pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes.
39+
40+
Please take a look at our documentation for how to install and use pip:
41+
42+
* `Installation`_
43+
* `Usage`_
44+
45+
We release updates regularly, with a new version every 3 months. Find more details in our documentation:
46+
47+
* `Release notes`_
48+
* `Release process`_
49+
50+
In pip 20.3, we've `made a big improvement to the heart of pip`_; `learn more`_. We want your input, so `sign up for our user experience research studies`_ to help us do it right.
51+
52+
**Note**: pip 21.0, in January 2021, removed Python 2 support, per pip's `Python 2 support policy`_. Please migrate to Python 3.
53+
54+
If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms:
55+
56+
* `Issue tracking`_
57+
* `Discourse channel`_
58+
* `User IRC`_
59+
60+
If you want to get involved head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms:
61+
62+
* `GitHub page`_
63+
* `Development documentation`_
64+
* `Development mailing list`_
65+
* `Development IRC`_
66+
67+
Code of Conduct
68+
---------------
69+
70+
Everyone interacting in the pip project's codebases, issue trackers, chat
71+
rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_.
72+
73+
.. _package installer: https://packaging.python.org/guides/tool-recommendations/
74+
.. _Python Package Index: https://pypi.org
75+
.. _Installation: https://pip.pypa.io/en/stable/installation/
76+
.. _Usage: https://pip.pypa.io/en/stable/
77+
.. _Release notes: https://pip.pypa.io/en/stable/news.html
78+
.. _Release process: https://pip.pypa.io/en/latest/development/release-process/
79+
.. _GitHub page: https://github.com/pypa/pip
80+
.. _Development documentation: https://pip.pypa.io/en/latest/development
81+
.. _made a big improvement to the heart of pip: https://pyfound.blogspot.com/2020/11/pip-20-3-new-resolver.html
82+
.. _learn more: https://pip.pypa.io/en/latest/user_guide/#changes-to-the-pip-dependency-resolver-in-20-3-2020
83+
.. _sign up for our user experience research studies: https://pyfound.blogspot.com/2020/03/new-pip-resolver-to-roll-out-this-year.html
84+
.. _Python 2 support policy: https://pip.pypa.io/en/latest/development/release-process/#python-2-support
85+
.. _Issue tracking: https://github.com/pypa/pip/issues
86+
.. _Discourse channel: https://discuss.python.org/c/packaging
87+
.. _Development mailing list: https://mail.python.org/mailman3/lists/distutils-sig.python.org/
88+
.. _User IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa
89+
.. _Development IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa-dev
90+
.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md
91+
92+

0 commit comments

Comments
 (0)