Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c5d82d2

Browse filesBrowse files
Merge pull request seeditsolution#304 from yashhacker69/master
update
2 parents 08b09aa + f9d0c8f commit c5d82d2
Copy full SHA for c5d82d2

File tree

Expand file treeCollapse file tree

3 files changed

+330
-0
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

3 files changed

+330
-0
lines changed
Open diff view settings
Collapse file

‎README.md‎

Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,9 @@
22

33

44
it is a new python program
5+
its help for beginners
6+
#python
7+
#beginners
8+
#code
9+
#2020
10+
Collapse file

‎find area of circle‎

Copy file name to clipboard
+10Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Python program to find Area of a circle
2+
3+
def findArea(r):
4+
PI = 3.142
5+
return PI * (r*r);
6+
7+
# Driver method
8+
print("Area is %.6f" % findArea(5));
9+
10+
# enjoy
Collapse file

‎libraries‎

Copy file name to clipboard
+314Lines changed: 314 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,314 @@
1+
#the list of libraries in python
2+
TensorFlow
3+
Scikit-Learn
4+
Numpy
5+
Keras
6+
PyTorch
7+
LightGBM
8+
Eli5
9+
SciPy
10+
Theano
11+
Pandas
12+
Scikit- learn
13+
Truth Value Testing
14+
Boolean Operations — and, or, not
15+
Comparisons
16+
Numeric Types — int, float, complex
17+
Iterator Types
18+
Sequence Types — list, tuple, range
19+
Text Sequence Type — str
20+
Binary Sequence Types — bytes, bytearray, memoryview
21+
Set Types — set, frozenset
22+
Mapping Types — dict
23+
Context Manager Types
24+
Other Built-in Types
25+
Special Attributes
26+
Built-in Exceptions
27+
Base classes
28+
Concrete exceptions
29+
Warnings
30+
Exception hierarchy
31+
Text Processing Services
32+
string — Common string operations
33+
re — Regular expression operations
34+
difflib — Helpers for computing deltas
35+
textwrap — Text wrapping and filling
36+
unicodedata — Unicode Database
37+
stringprep — Internet String Preparation
38+
readline — GNU readline interface
39+
rlcompleter — Completion function for GNU readline
40+
Binary Data Services
41+
struct — Interpret bytes as packed binary data
42+
codecs — Codec registry and base classes
43+
Data Types
44+
datetime — Basic date and time types
45+
calendar — General calendar-related functions
46+
collections — Container datatypes
47+
collections.abc — Abstract Base Classes for Containers
48+
heapq — Heap queue algorithm
49+
bisect — Array bisection algorithm
50+
array — Efficient arrays of numeric values
51+
weakref — Weak references
52+
types — Dynamic type creation and names for built-in types
53+
copy — Shallow and deep copy operations
54+
pprint — Data pretty printer
55+
reprlib — Alternate repr() implementation
56+
enum — Support for enumerations
57+
Numeric and Mathematical Modules
58+
numbers — Numeric abstract base classes
59+
math — Mathematical functions
60+
cmath — Mathematical functions for complex numbers
61+
decimal — Decimal fixed point and floating point arithmetic
62+
fractions — Rational numbers
63+
random — Generate pseudo-random numbers
64+
statistics — Mathematical statistics functions
65+
Functional Programming Modules
66+
itertools — Functions creating iterators for efficient looping
67+
functools — Higher-order functions and operations on callable objects
68+
operator — Standard operators as functions
69+
File and Directory Access
70+
pathlib — Object-oriented filesystem paths
71+
os.path — Common pathname manipulations
72+
fileinput — Iterate over lines from multiple input streams
73+
stat — Interpreting stat() results
74+
filecmp — File and Directory Comparisons
75+
tempfile — Generate temporary files and directories
76+
glob — Unix style pathname pattern expansion
77+
fnmatch — Unix filename pattern matching
78+
linecache — Random access to text lines
79+
shutil — High-level file operations
80+
Data Persistence
81+
pickle — Python object serialization
82+
copyreg — Register pickle support functions
83+
shelve — Python object persistence
84+
marshal — Internal Python object serialization
85+
dbm — Interfaces to Unix “databases”
86+
sqlite3 — DB-API 2.0 interface for SQLite databases
87+
Data Compression and Archiving
88+
zlib — Compression compatible with gzip
89+
gzip — Support for gzip files
90+
bz2 — Support for bzip2 compression
91+
lzma — Compression using the LZMA algorithm
92+
zipfile — Work with ZIP archives
93+
tarfile — Read and write tar archive files
94+
File Formats
95+
csv — CSV File Reading and Writing
96+
configparser — Configuration file parser
97+
netrc — netrc file processing
98+
xdrlib — Encode and decode XDR data
99+
plistlib — Generate and parse Mac OS X .plist files
100+
Cryptographic Services
101+
hashlib — Secure hashes and message digests
102+
hmac — Keyed-Hashing for Message Authentication
103+
secrets — Generate secure random numbers for managing secrets
104+
Generic Operating System Services
105+
os — Miscellaneous operating system interfaces
106+
io — Core tools for working with streams
107+
time — Time access and conversions
108+
argparse — Parser for command-line options, arguments and sub-commands
109+
getopt — C-style parser for command line options
110+
logging — Logging facility for Python
111+
logging.config — Logging configuration
112+
logging.handlers — Logging handlers
113+
getpass — Portable password input
114+
curses — Terminal handling for character-cell displays
115+
curses.textpad — Text input widget for curses programs
116+
curses.ascii — Utilities for ASCII characters
117+
curses.panel — A panel stack extension for curses
118+
platform — Access to underlying platform’s identifying data
119+
errno — Standard errno system symbols
120+
ctypes — A foreign function library for Python
121+
Concurrent Execution
122+
threading — Thread-based parallelism
123+
multiprocessing — Process-based parallelism
124+
multiprocessing.shared_memory — Provides shared memory for direct access across processes
125+
The concurrent package
126+
concurrent.futures — Launching parallel tasks
127+
subprocess — Subprocess management
128+
sched — Event scheduler
129+
queue — A synchronized queue class
130+
_thread — Low-level threading API
131+
_dummy_thread — Drop-in replacement for the _thread module
132+
dummy_threading — Drop-in replacement for the threading module
133+
contextvars — Context Variables
134+
Context Variables
135+
Manual Context Management
136+
asyncio support
137+
Networking and Interprocess Communication
138+
asyncio — Asynchronous I/O
139+
socket — Low-level networking interface
140+
ssl — TLS/SSL wrapper for socket objects
141+
select — Waiting for I/O completion
142+
selectors — High-level I/O multiplexing
143+
asyncore — Asynchronous socket handler
144+
asynchat — Asynchronous socket command/response handler
145+
signal — Set handlers for asynchronous events
146+
mmap — Memory-mapped file support
147+
Internet Data Handling
148+
email — An email and MIME handling package
149+
json — JSON encoder and decoder
150+
mailcap — Mailcap file handling
151+
mailbox — Manipulate mailboxes in various formats
152+
mimetypes — Map filenames to MIME types
153+
base64 — Base16, Base32, Base64, Base85 Data Encodings
154+
binhex — Encode and decode binhex4 files
155+
binascii — Convert between binary and ASCII
156+
quopri — Encode and decode MIME quoted-printable data
157+
uu — Encode and decode uuencode files
158+
Structured Markup Processing Tools
159+
html — HyperText Markup Language support
160+
html.parser — Simple HTML and XHTML parser
161+
html.entities — Definitions of HTML general entities
162+
XML Processing Modules
163+
xml.etree.ElementTree — The ElementTree XML API
164+
xml.dom — The Document Object Model API
165+
xml.dom.minidom — Minimal DOM implementation
166+
xml.dom.pulldom — Support for building partial DOM trees
167+
xml.sax — Support for SAX2 parsers
168+
xml.sax.handler — Base classes for SAX handlers
169+
xml.sax.saxutils — SAX Utilities
170+
xml.sax.xmlreader — Interface for XML parsers
171+
xml.parsers.expat — Fast XML parsing using Expat
172+
Internet Protocols and Support
173+
webbrowser — Convenient Web-browser controller
174+
cgi — Common Gateway Interface support
175+
cgitb — Traceback manager for CGI scripts
176+
wsgiref — WSGI Utilities and Reference Implementation
177+
urllib — URL handling modules
178+
urllib.request — Extensible library for opening URLs
179+
urllib.response — Response classes used by urllib
180+
urllib.parse — Parse URLs into components
181+
urllib.error — Exception classes raised by urllib.request
182+
urllib.robotparser — Parser for robots.txt
183+
http — HTTP modules
184+
http.client — HTTP protocol client
185+
ftplib — FTP protocol client
186+
poplib — POP3 protocol client
187+
imaplib — IMAP4 protocol client
188+
nntplib — NNTP protocol client
189+
smtplib — SMTP protocol client
190+
smtpd — SMTP Server
191+
telnetlib — Telnet client
192+
uuid — UUID objects according to RFC 4122
193+
socketserver — A framework for network servers
194+
http.server — HTTP servers
195+
http.cookies — HTTP state management
196+
http.cookiejar — Cookie handling for HTTP clients
197+
xmlrpc — XMLRPC server and client modules
198+
xmlrpc.client — XML-RPC client access
199+
xmlrpc.server — Basic XML-RPC servers
200+
ipaddress — IPv4/IPv6 manipulation library
201+
Multimedia Services
202+
audioop — Manipulate raw audio data
203+
aifc — Read and write AIFF and AIFC files
204+
sunau — Read and write Sun AU files
205+
wave — Read and write WAV files
206+
chunk — Read IFF chunked data
207+
colorsys — Conversions between color systems
208+
imghdr — Determine the type of an image
209+
sndhdr — Determine type of sound file
210+
ossaudiodev — Access to OSS-compatible audio devices
211+
Internationalization
212+
gettext — Multilingual internationalization services
213+
locale — Internationalization services
214+
Program Frameworks
215+
turtle — Turtle graphics
216+
cmd — Support for line-oriented command interpreters
217+
shlex — Simple lexical analysis
218+
Graphical User Interfaces with Tk
219+
tkinter — Python interface to Tcl/Tk
220+
tkinter.ttk — Tk themed widgets
221+
tkinter.tix — Extension widgets for Tk
222+
tkinter.scrolledtext — Scrolled Text Widget
223+
IDLE
224+
Other Graphical User Interface Packages
225+
Development Tools
226+
typing — Support for type hints
227+
pydoc — Documentation generator and online help system
228+
doctest — Test interactive Python examples
229+
unittest — Unit testing framework
230+
unittest.mock — mock object library
231+
unittest.mock — getting started
232+
2to3 - Automated Python 2 to 3 code translation
233+
test — Regression tests package for Python
234+
test.support — Utilities for the Python test suite
235+
test.support.script_helper — Utilities for the Python execution tests
236+
Debugging and Profiling
237+
Audit events table
238+
bdb — Debugger framework
239+
faulthandler — Dump the Python traceback
240+
pdb — The Python Debugger
241+
The Python Profilers
242+
timeit — Measure execution time of small code snippets
243+
trace — Trace or track Python statement execution
244+
tracemalloc — Trace memory allocations
245+
Software Packaging and Distribution
246+
distutils — Building and installing Python modules
247+
ensurepip — Bootstrapping the pip installer
248+
venv — Creation of virtual environments
249+
zipapp — Manage executable Python zip archives
250+
Python Runtime Services
251+
sys — System-specific parameters and functions
252+
sysconfig — Provide access to Python’s configuration information
253+
builtins — Built-in objects
254+
__main__ — Top-level script environment
255+
warnings — Warning control
256+
dataclasses — Data Classes
257+
contextlib — Utilities for with-statement contexts
258+
abc — Abstract Base Classes
259+
atexit — Exit handlers
260+
traceback — Print or retrieve a stack traceback
261+
__future__ — Future statement definitions
262+
gc — Garbage Collector interface
263+
inspect — Inspect live objects
264+
site — Site-specific configuration hook
265+
Custom Python Interpreters
266+
code — Interpreter base classes
267+
codeop — Compile Python code
268+
Importing Modules
269+
zipimport — Import modules from Zip archives
270+
pkgutil — Package extension utility
271+
modulefinder — Find modules used by a script
272+
runpy — Locating and executing Python modules
273+
importlib — The implementation of import
274+
Using importlib.metadata
275+
Python Language Services
276+
parser — Access Python parse trees
277+
ast — Abstract Syntax Trees
278+
symtable — Access to the compiler’s symbol tables
279+
symbol — Constants used with Python parse trees
280+
token — Constants used with Python parse trees
281+
keyword — Testing for Python keywords
282+
tokenize — Tokenizer for Python source
283+
tabnanny — Detection of ambiguous indentation
284+
pyclbr — Python module browser support
285+
py_compile — Compile Python source files
286+
compileall — Byte-compile Python libraries
287+
dis — Disassembler for Python bytecode
288+
pickletools — Tools for pickle developers
289+
Miscellaneous Services
290+
formatter — Generic output formatting
291+
MS Windows Specific Services
292+
msilib — Read and write Microsoft Installer files
293+
msvcrt — Useful routines from the MS VC++ runtime
294+
winreg — Windows registry access
295+
winsound — Sound-playing interface for Windows
296+
Unix Specific Services
297+
posix — The most common POSIX system calls
298+
pwd — The password database
299+
spwd — The shadow password database
300+
grp — The group database
301+
crypt — Function to check Unix passwords
302+
termios — POSIX style tty control
303+
tty — Terminal control functions
304+
pty — Pseudo-terminal utilities
305+
fcntl — The fcntl and ioctl system calls
306+
pipes — Interface to shell pipelines
307+
resource — Resource usage information
308+
nis — Interface to Sun’s NIS (Yellow Pages)
309+
syslog — Unix syslog library routines
310+
Superseded Modules
311+
optparse — Parser for command line options
312+
imp — Access the import internals
313+
Undocumented Modules
314+
Platform specific modules

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.