• Article 1 :-Global Scope

    Categories: Python ||

    A variable created in the main body of the Python code is a global variable and belongs to the global scope.Global variables are available from within any scope, global and local.ExampleA variable cre

  • Article 2 :-Python Scope

    Categories: Python ||

    A variable is only available from inside the region it is created. This is called scope.Local ScopeA variable created inside a function belongs to the local scope of that function, and can only be use

  • Article 3 :-Python Iterators

    Categories: Python ||

    An iterator is an object that contains a countable number of values.An iterator is an object that can be iterated upon, meaning that you can traverse through all the values.Technically, in Python, an

  • Article 5 :-What is an Array?

    Categories: Python ||

    An array is a special variable, which can hold more than one value at a time.If you have a list of items (a list of car names, for example), storing the cars in single variables could look like this:c

  • Article 6 :-Python Casting

    Categories: Python ||

    Specify a Variable TypeThere may be times when you want to specify a type on to a variable. This can be done with casting. Python is an object-orientated language, and as such it uses classes to defin

  • Article 7 :-Ordered or Unordered?

    Categories: Python ||

    As of Python version 3.7, dictionaries are ordered. In Python 3.6 and earlier, dictionaries are unordered.When we say that dictionaries are ordered, it means that the items have a defined order, and t

  • Article 8 :-Python Dictionaries

    Categories: Python ||

    DictionaryDictionaries are used to store data values in key:value pairs.A dictionary is a collection which is ordered*, changeable and do not allow duplicates.As of Python version 3.7, dictionaries ar

  • Article 9 :-Python Lambda

    Categories: Python ||

    A lambda function is a small anonymous function.A lambda function can take any number of arguments, but can only have one expression.Syntaxlambda arguments : expressionThe expression is executed and t

  • Article 15 :-Two new storage locations available for AWS DataSync

    Categories: AWS(Amazon Web Services) ||

    Two new storage locations available for AWS DataSync   Today, we are announcing the general availability of two additional storage locations for AWS DataSync, an online data movement service th

  • Article 16 :-Amazon FSx for Lustre now supports root squash

    Categories: AWS(Amazon Web Services) ||

    Amazon FSx for Lustre now supports root squash   Amazon FSx for Lustre, a service that provides cost-effective, high-performance, and scalable file storage for compute workloads, now supports r

  • Article 17 :-Announcing new AWS Wavelength Zones in Nashville and Tampa

    Categories: AWS(Amazon Web Services) ||

    Announcing new AWS Wavelength Zones in Nashville and Tampa   Today, we are announcing the availability of two new AWS Wavelength Zones on Verizon’s 5G Ultra Wideband network in Nashville,

  • Article 18 :-AWS Config supports Amazon CloudWatch metrics

    Categories: AWS(Amazon Web Services) ||

    AWS Config supports Amazon CloudWatch metrics   Today, we are announcing the availability of Amazon CloudWatch metrics for usage monitoring on AWS Config. AWS Config tracks changes made to supp

  • Article 19 :-Amazon EC2 Hpc6a instances now available in additional regions

    Categories: AWS(Amazon Web Services) ||

    Amazon EC2 Hpc6a instances now available in additional regions   Starting today, Amazon Web Services (AWS) announces general availability of Amazon EC2 Hpc6a instances in additional regions. Th

  • Article 21 :-Introducing Amazon EC2 M6id instances

    Categories: Angular || Angular ||

    Introducing Amazon EC2 M6id instances   Amazon Web Services (AWS) announces the general availability of new general purpose Amazon Elastic Compute Cloud (Amazon EC2) M6id instances. M6id instan

  • Article 27 :-Starting a New Thread

    Categories: Python ||

    To spawn another thread, you need to call following method available in thread module −thread.start_new_thread ( function, args[, kwargs] )This method call enables a fast and efficient way to create

  • Article 28 :-Python - Multithreaded Programming

    Categories: Python ||

    Running several threads is similar to running several different programs concurrently, but with the following benefits −Multiple threads within a process share the same data space with the main thre

  • Article 29 :-Sending Attachments as an E-mail

    Categories: Python ||

    To send an e-mail with mixed content requires to set Content-type header to multipart/mixed. Then, text and attachment sections can be specified within boundaries.A boundary is started with two hyphen

  • Article 30 :-Sending an HTML e-mail using Python

    Categories: Python ||

    When you send a text message using Python, then all the content are treated as simple text. Even if you include HTML tags in a text message, it is displayed as simple text and HTML tags will not be fo

  • Article 31 :-Python - Sending Email using SMTP

    Categories: Python ||

    Simple Mail Transfer Protocol (SMTP) is a protocol, which handles sending e-mail and routing e-mail between mail servers.Python provides smtplib module, which defines an SMTP client session object tha

  • Article 32 :-Further Readings

    Categories: Python ||

    This was a quick start with Socket Programming. It is a vast subject. It is recommended to go through the following link to find more detail −1. Unix Socket Programming.2. Python Socket Library and

  • Article 33 :-Python Internet modules

    Categories: Python ||

    A list of some important modules in Python Network/Internet programming.ProtocolCommon functionPort NoPython moduleHTTPWeb pages80httplib, urllib, xmlrpclibNNTPUsenet news119nntplibFTPFile transfers20

  • Article 34 :-A Simple Client

    Categories: Python ||

    Let us write a very simple client program which opens a connection to a given port 12345 and given host. This is very simple to create a socket client using Python's socket module function.The socket.

  • Article 35 :-What is Simple Server

    Categories: Python ||

    To write Internet servers, we use the socket function available in socket module to create a socket object. A socket object is then used to call other functions to setup a socket server.Now

  • Article 36 :-General Socket Methods

    Categories: Python ||

    Sr.No.Method & Description1. s.recv() - This method receives TCP message2. s.send() - This method transmits TCP message3. s.recvfrom() - This method receives UDP message4. s.sendto() - This method

  • Article 37 :-Server Socket Methods

    Categories: Python ||

    Sr.No.Method & Description1. s.bind() - This method binds address (hostname, port number pair) to socket.2. s.listen() - This method sets up and start TCP listener.3. s.accept() - This passively a

  • Article 38 :-The socket Module

    Categories: Python ||

    To create a socket, you must use the socket.socket() function available in socket module, which has the general syntax −s = socket.socket (socket_family, socket_type, protocol=0)Here is the descript

  • Article 39 :-What is Sockets?

    Categories: Python ||

    Sockets are the endpoints of a bidirectional communications channel. Sockets may communicate within a process, between processes on the same machine, or between processes on different continents.Socke

  • Article 40 :-Python - Network Programming

    Categories: PHP ||

    Python provides two levels of access to network services. At a low level, you can access the basic socket support in the underlying operating system, which allows you to implement clients and servers

  • Article 41 :-Regular Expression Patterns

    Categories: Python ||

    Except for control characters, (+ ? . * ^ $ ( ) [ ] { } | \), all characters match themselves. You can escape a control character by preceding it with a backslash.Following table lists the regular exp

  • Article 42 :-Regular Expression Modifiers: Option Flags

    Categories: Python ||

    Regular expression literals may include an optional modifier to control various aspects of matching. The modifiers are specified as an optional flag. You can provide multiple modifiers using exclusive

  • Article 43 :-The match Function

    Categories: Python ||

    This function attempts to match RE pattern to string with optional flags.Here is the syntax for this function −re.match(pattern, string, flags=0)Here is the description of the parameters −

  • Article 44 :-Python - Regular Expressions

    Categories: Python ||

    A regular expression is a special sequence of characters that helps you match or find other strings or sets of strings, using a specialized syntax held in a pattern. Regular expressions are widely use

  • Article 47 :-Two new storage locations available for AWS DataSync

    Categories: AWS(Amazon Web Services) ||

    Two new storage locations available for AWS DataSync   Today, we are announcing the general availability of two additional storage locations for AWS DataSync, an online data movement service th

  • Article 48 :-Creating Database Table In Python

    Categories: Python ||

    Once a database connection is established, we are ready to create tables or records into the database tables using execute method of the created cursor.ExampleLet us create Database table EMPLOYEE −

  • Article 49 :-Database Connection In Python

    Categories: Python ||

    Before connecting to a MySQL database, make sure of the followings −You have created a database TESTDB.You have created a table EMPLOYEE in TESTDB.This table has fields FIRST_NAME, LAST_NAME, AGE, S

  • Article 50 :-What is MySQLdb?

    Categories: Python ||

    MySQLdb is an interface for connecting to a MySQL database server from Python. It implements the Python Database API v2.0 and is built on top of the MySQL C API.How do I Install MySQLdb?Before proceed

Top articles
How to Create a Winning Business Plan in 2024 Published at:- Monsoon Bliss: 5 Ways Goa Captivates Travelers in 2024 Published at:- Why Indian Chutneys Deserve Their Spot Among the World's Best Dips Published at:- Impact of Virtual Reality on Sports Viewing in 2024 Published at:- How Jerrycans Are Good Storage Solutions for Business Owners Published at:- Latest Innovations in Korean Skincare for 2024 Published at:- Oily Skin Survival Guide for the Hottest Summer of 2024 Published at:- Boost Your Cybersecurity: Leveraging Microsoft Authenticator App in 2024 Published at:- ZebPay Your Go-To Platform for Instant Bitcoin Purchases in India Published at:- The Impact of Stress on Uterine Problems: Strategies for Management Published at:- Mastering the Art of Resilience: A Guide to Handling Rejection Published at:- Community Colleges Are Navigating the Educational Landscape in 2024 Published at:- Plan Your Dream April Vacation: Top Destinations to Consider Published at:- From Antioxidants to Anti-Inflammatory Compounds: Betel Leaf's Health Secrets Revealed Published at:- Top Smart Glasses of A Buyers Guide Published at:- Key Qualities to Cultivate Becoming a Better Teacher Published at:- Role of Technology in Modern Curriculum Development Published at:- How to Align Curriculum Development with Learning Objectives Published at:- Top 5 Natural Remedies to Shield Your Skin from Holi Colors Published at:- Elevate Your Holi Celebration with this Gujiya Recipe Published at:- Who launched the INSAT 3D satellite and when Published at:- Teaching the Significance of Republic Day to the Next Generation Published at:- Ways to Support the Community on World AIDS Day 2023 of Building Solidarity Published at:- How to Plan the Perfect Winter Wonderland Fest Published at:- Making the Most of Winter Magic Festival Season Published at:- Unleash the Magic: Top Winter Festivals Around the World Published at:- Captivating Moments: Highlights of the Winter Magic Festival Published at:- Embrace the Chill Unforgettable Experiences at the Winter Magic Festival Published at:- Uncovering the Secrets of the Aurora Winter Festival Published at:- 10 Tips for Making the Most of the Winter Festival Published at:- Ultimate Guide to the Aurora Winter Festival Published at:- Ultimate Jack Frost Winterfest Survival Guide Published at:- Complete Guide to Jack Frost Winterfest with Making Memories Published at:- Celebration of Light, Joy, and Togetherness Diwali 2023: Published at:- Experience the Beauty of Diwali 2023 Published at:- Hindu Festival of Lights to Celebrating Diwali 2023 Published at:- Hindu Festival of Lights to Celebrating Diwali 2023 Published at:- Embrace the Festive Vibes Of Diwali 2023 in India Published at:- Achieve Radiant Skin with These Benefits The Power of Skin Toner Published at:- Unveiling the Beauty Benefits of Besan for Your Skin from Dull to Radiant Published at:- Get Glowing with Besan Guide to its Face Transforming Benefits Published at:- Remarkable Benefits of Olive Oil for Skin Whitening Published at:- Unleashing the Power of Platform as a Service in Cloud Computing Published at:- Benefits of Platform as a Service for Cloud Computing Success Published at:- Mastering Cloud Infrastructure Services A Comprehensive Guide Published at:- Choosing the Right Cloud Infrastructure Services for Your Business Published at:- Why Cloud Infrastructure Services Are Essential for Business Success Published at:- Unleashing the Power of Cloud Computing Storage Published at:- Advantages of Cloud Computing Storage Published at:- 10 Creative Ideas for Using Adobe Acrobat Published at:- Unlock the Power of Adobe Acrobat: A Comprehensive Guide Published at:- How to Convert PDFs Easily and Quickly Published at:- When Is the Best Time to Use a PDF Converter Published at:- Advantages of Using a PDF Converter Published at:- Exploring the Benefits of an eLearning Platform Published at:- How to Choose the Right E Learning Platform for Your Needs Published at:- Exploring the Benefits of Vocational Training Published at:- Tips for Choosing the Right Vocational Training Program Published at:- The Pros and Cons of Choosing an AR 15 for Your Next Deer Hunting Rifle Published at:- Why a Universal Basic Income Could be Good Economics for Hard Times Published at:- 7 Reasons Why Every Student Should Own a Personal Computer Published at:- 10 Ways Technology is Revolutionizing Healthcare Published at:- Upcoming Technology In Computer Science Published at:- Capture High Quality Photos and Videos with the VIVO Drone Camera Phone Published at:- PHP and its use Published at:- Why is web application security important for any website Published at:- Technology will be replaced by Android in the future Its correct or not Published at:- Some of the advantages of Angular over other frameworks Published at:- Best E commerce website development services Published at:- Mobile App Security Important in App Development Published at:- Advantages and Disadvantages of Tourism Published at:- What is the best cryptography software Published at:- What are some must read books on economics Published at:- When did Covid start in India Published at:- Which mobile phone has the most sales in India Published at:- Which is the best smartphone under Rs. 8,000 in India Published at:- What are the features of the C language Published at:- Who are the world's top 10 best artists of all time Published at:- What is data binding in AngularJS Published at:- How much do professional gamers earn in India Published at:- What is IT technology Published at:- What's the best mind map software Published at:- What are the service management tools on Linux Published at:- What is cloud computing and its advantages Published at:- How do I raise funds in India for my startup business idea Published at:- What businesses can an electronics and telecommunication engineer start Published at:- What precautions are you taking out of fear of the coronavirus Published at:- Is there a treatment for the Coronavirus Published at:- What is the most popular sport in the world Published at:- What is the key to successful sports betting Published at:- How do I crack Indian Railway Recruitment exams Published at:- What are the top most habits for health, beauty, and fitness of girls aged 14 to 21 Published at:- What is the single best site for homemade health and beauty recipes Published at:- Best Acca Insurance Offers 2022 Published at:- Is Technology Making Leadership More Efficient or Dependent? Published at:- The Value of an International Degree in Business Management Published at:- 5 Startup Lessons They Don't Teach You in College Published at:- Dire Need For A Change Of Syllabus For - 'The Indian Education System' Published at:- Top 10 Reasons Behind the Rise of Aerospace Engineering Career Published at:- What is Component Management in Software Engineering Published at:-
R4RIn Team
The content on R4RIn.com website is created by expert teams.