Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • Python Tutorial
  • Interview Questions
  • Python Quiz
  • Python Glossary
  • Python Projects
  • Practice Python
  • Data Science With Python
  • Python Web Dev
  • DSA with Python
  • Python OOPs
Open In App
Next Article:
Python | os.sched_rr_get_interval() method
Next article icon

Python | os.get_terminal_size() method

Last Updated : 26 May, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report

OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality.

os.get_terminal_size() method in Python is used to query the size of a terminal. This method returns the size of a terminal as a pair columns and lines. Here, columns represents width of the terminal window in characters and lines represents height of the terminal window in characters.

Syntax: os.get_terminal_size(fd = STDOUT_FILENO)

Parameter:
fd (optional): A file descriptor. It specifies which file descriptor should be queried. The default value of fd parameter is STDOUT_FILENO or standard output.

Return Type: This method returns a object of class ‘os.terminal_size’ which holds columns and lines attributes.

Code: Use of os.get_terminal_size() method




# Python program to explain os.get_terminal_size() method 
    
# importing os module 
import os
  
# Get the size
# of the terminal
size = os.get_terminal_size()
  
  
# Print the size
# of the terminal
print(size)
 
 
Output:
  os.terminal_size(columns=80, lines=24)  

Terminal Size


Next Article
Python | os.sched_rr_get_interval() method

I

ihritik
Improve
Article Tags :
  • Python
  • python-os-module
Practice Tags :
  • python

Similar Reads

  • OS Module in Python with Examples
    The OS module in Python provides functions for interacting with the operating system. OS comes under Python's standard utility modules. This module provides a portable way of using operating system-dependent functionality. The *os* and *os.path* modules include many functions to interact with the fi
    10 min read
  • Process Parameters

    • Python | os.ctermid() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.ctermid() method in Python is used to get the filename corresponding to the co
      1 min read

    • Python | os.environ object
      os.environ in Python is a mapping object that represents the user’s OS environmental variables. It returns a dictionary having the user’s environmental variable as key and their values as value. os.environ behaves like a Python dictionary, so all the common dictionary operations like get and set can
      5 min read

    • Python - os.chdir() method
      os.chdir() method in Python is used to change the current working directory to the specified path. This function is part of the os module, which provides functionalities to interact with the operating system. Example of os.chdir()[GFGTABS] Python import os # Check the current working directory print
      3 min read

    • Python | os.fchdir() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.fchdir() method in Python is used to change the current working directory to t
      3 min read

    • Python | os.getcwd() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      2 min read

    • Python | os.getenv() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python OS env standard utility modules. This module provides a portable way of using operating system-dependent functionality. os.getenv() method in Python OS env returns the value of the os environment
      4 min read

    • Python | os.get_exec_path() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      2 min read

    • Python | os.geteuid() and seteuid() method
      All functions in the OS Module raise OSError in the case of invalid or inaccessible file names and paths, or other arguments that have the correct type, but are not accepted by the operating system. os.geteuid() method in Python is used to get the current process’s effective user ID while os.seteuid
      3 min read

    • Python | os.getgrouplist() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      2 min read

    • Python | os.getgroups() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      2 min read

    • Python | os.getlogin() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.getlogin() method in Python is used to get the name of the user logged in on t
      1 min read

    • Python | os.getpgid() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      3 min read

    • Python | os.getpgrp() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      2 min read

    • Python | os.getpid() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.getpid() method in Python is used to get the process ID of the current process
      2 min read

    • Python | os.getppid() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.getppid() method in Python is used to get the parent process ID of the current
      2 min read

    • Python | os.getresuid() and os.setresuid() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      4 min read

    • Python | os.getuid() and os.setuid() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      3 min read

    • Python | os.setregid() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      3 min read

    • Python | os.setreuid() method
      All functions in the os module raise OSError in the case of invalid or inaccessible file names and paths, or other arguments that have the correct type, but are not accepted by the operating system. os.setreuid() method in Python is used to set the current process’s real and effective user IDs. In t
      2 min read

    • Python | os.setgroups() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      2 min read

    • Python | os.getsid() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      2 min read

    • Python | os.strerror() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      3 min read

    • Python | os.supports_bytes_environ object
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality.os.supports_bytes_environ object in Python is used to check whether the native OS
      1 min read

    • Python | os.umask() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.umask() method in Python is used to set the current numeric umask value and ge
      2 min read

    Inheritance of File Descriptors

    • Python | os.set_inheritable() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.set_inheritable() method in Python is used to set the value of inheritable fla
      2 min read

    • Python | os.get_terminal_size() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.get_terminal_size() method in Python is used to query the size of a terminal.
      1 min read

    Interface to the scheduler

    • Python | os.sched_rr_get_interval() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality.OS module contains some methods which provides an interface to the scheduler and u
      2 min read

    • Python | os.sched_setaffinity() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.sched_setaffinity() method in Python is used to set the CPU affinity mask of a
      2 min read

    • Python | os.sched_getaffinity() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.sched_getaffinity() method in Python is used to get the set of CPUs on which t
      2 min read

    • Python | os.confstr() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.confstr() method in Python is used to get string-valued system configuration v
      4 min read

    System Information

    • Python | os.sysconf() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.sysconf() method in Python is used to get integer-valued system configuration
      4 min read

    • Python | os.access() Method
      os.access() method uses the real uid/gid to test for access to the path. Most operations use the effective uid/gid, therefore, this routine can be used in a suid/sgid environment to test if the invoking user has the specified access to the path. In this article, we will learn about the access() func
      3 min read

    • Python | os.chflags() method
      OS module in Python provides functions for interacting with the operating system. This comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.chflags() method in Python used to set the flags of path to the numeric flag
      2 min read

    • Python | os.chown() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      5 min read

    • Python - os.chroot() method
      os.chroot() method in Python is used to change the root directory of the current process to path. Syntax: os.chroot(path)Parameters: path: path to be set as root for the current process.Returns: does not return any value. Code #1: C/C++ Code # Python program to explain os.chroot() method import os,
      1 min read

    Files and Directories

    • Python | os.link() method
      os.link() method in Python is used to create a hard link. This method creates a hard link pointing to the source named destination. In this article, we will see what is os link and the uses of os.link(). Note: This method is only available on Windows and Unix platforms. os.link() Method Syntax in Py
      2 min read

    • Python | os.listdir() method
      The os.listdir() method in Python is used to get the list of all files and directories in the specified directory. If we don’t specify any directory, then a list of files and directories in the current working directory will be returned. os.listdir() Method Syntax in Python Syntax: os.listdir(path)
      3 min read

    • Python | os.mkdir() method
      All functions in the OS module raise OSError in the case of invalid or inaccessible file names and paths, or other arguments that have the correct type, but are not accepted by the operating system. os.mkdir() method in Python is used to create a directory in Python or create a directory with Python
      4 min read

    • Python | os.makedirs() method
      All functions in the os module raise OSError in the case of invalid or inaccessible file names and paths, or other arguments that have the correct type but are not accepted by the operating system. In this article, we will see how to create directories recursively using the os module and also about
      3 min read

    • Python os.mkfifo() method
      OS module in Python provides functions for interacting with the operating system. OS module comes under Python’s standard utility modules. os.mkfifo() method is used to create a FIFO (a named pipe) named path with the specified mode. FIFOs are named pipe which can be accessed like other regular file
      3 min read

    • Python | os.major() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.major() method in Python is used to extract the device major number from the s
      2 min read

    • Python | os.minor() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.minor() method in Python is used to extract the device minor number from the s
      2 min read

    • Python | os.makedev() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.makedev() method in Python is used to compose a raw device number from the giv
      3 min read

    • Python | os.readlink() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      2 min read

    • Python | os.remove() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      3 min read

    • Python | os.removedirs() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      3 min read

    • Python | os.rename() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system-dependent functionality. To rename a file or directory in Python you can use os.rename() function of OS mo
      2 min read

    • Python | os.renames() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.renames() method is a recursive directory or file renaming function. It works
      2 min read

    • Python - os.replace() method
      Prerequisite: OS module in Python. os.replace() method in Python is used to rename the file or directory. If destination is a directory, OSError will be raised. If the destination exists and is a file, it will be replaced without error if the action performing user has permission. This method may fa
      2 min read

    • Python | os.rmdir() method
      os.rmdir() method in Python is used to remove or delete an empty directory. OSError will be raised if the specified path is not an empty directory. All functions in the OS module raise OSError in the case of invalid or inaccessible file names and paths, or other arguments that have the correct type,
      2 min read

    • Python | os.scandir() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system-dependent functionality. The os.scandir() method in Python is used to get an iterator of os.DirEntry objec
      2 min read

    • Python | os.stat() method
      OS comes under Python standard utility modules. This module provides a portable way of using operating system-dependent functionality. os.stat() method in Python performs stat() system calls on the specified path. This method is used to get the status of the specified path. os.stat() Method Syntax i
      3 min read

    • Python | os.statvfs() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.statvfs() method in Python is used to get the information about the mounted fi
      2 min read

    • Python | os.sync() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality.os.sync() method in Python is used to force write of everything to disk. This meth
      2 min read

    • Python | os.truncate() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.truncate() method in Python is used to truncate the file indicated by the spec
      4 min read

    • Python | os.unlink() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      3 min read

    • os.walk() in Python
      How to traverse file system in Python ? Suppose we have given below file structure in our system and we want to traverse all it's branches completely from top to bottom ? How does os.walk() work in python ?OS.walk() generate the file names in a directory tree by walking the tree either top-down or b
      2 min read

    • Python | os.abort() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.abort() method in Python is used to generate a SIGABRT signal to the current p
      2 min read

    • Python | os._exit() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os._exit() method in Python is used to exit the process with specified status wit
      2 min read

    • Python | os.fork() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality.All functions in os module raise OSError in the case of invalid or inaccessible fi
      2 min read

    • Python | os.kill() method
      os.kill() method in Python is used to send a specified signal to the process with a specified process ID. Constants for the specific signals available on the host platform are defined in the Signal Module. os.kill() Method Syntax in PythonSyntax: os.kill(pid, sig) Parameters: pid: An integer value r
      2 min read

    • Python | os.nice() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      4 min read

    • Python | os.system() method
      The OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system-dependent functionality. os.system() method executes the command (a string) in a subshell. This method
      3 min read

    • Python | os.times() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.times() method in Python is used to get the current global process times. Synt
      1 min read

    • Python | os.wait() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.wait() method in Python is used by a process to wait for completion of a child
      2 min read

    • Python | os.open() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system-dependent functionality. os.open() method in Python opens a specified file path. This method returns a fil
      3 min read

    Process Management

    • Python | os.device_encoding() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.device_encoding() method in Python is used to get the encoding of the device a
      2 min read

    • Python | os.dup() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. A file descriptor is small integer value that corresponds to a file or other inpu
      3 min read

    • Python | os.dup2() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system-dependent functionality. A file descriptor is small integer value that corresponds to a file or other inpu
      3 min read

    • Python | os.fchmod() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality.In Unix-like systems, Modes are file system permissions given to user, group and o
      3 min read

    • Python | os.fchown() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      4 min read

    • Python | os.fdatasync() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.fdatasync() method in Python is used to force write of the file associated wit
      2 min read

    • Python | os.fstat() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.fstat() method in Python is used to get the status of a file descriptor. A fil
      3 min read

    • Python | os.fstatvfs() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.fstatvfs() method in Python is used to get information about the file system c
      3 min read

    File Descriptor Operations

    • Python | os.get_blocking() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.get_blocking() method in Python is used to get the blocking mode information o
      2 min read

    • Python | os.isatty() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.isatty() method in Python is used to check whether the specified file descript
      2 min read

    • Python | os.openpty() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.openpty() method in Python is used to open a new pseudo-terminal pair. This me
      1 min read

    • Python | os.pipe() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. All functions in os module raise OSError in the case of invalid or inaccessible f
      2 min read

    • Python | os.pipe2() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. A pipe is a method to pass information from one process to another process. It of
      2 min read

    • Python | os.pread() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.pread() method in Python is used to read at most n bytes from the file associa
      3 min read

    • Python | os.write() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.write() method in Python is used to write a bytestring to the given file descr
      2 min read

    • Python | os.pwrite() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.pwrite() method in Python is used to write the specified bytestring to the fil
      3 min read

    • Python | os.read() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.read() method in Python is used to read at most n bytes from the file associat
      2 min read

    • Python | os.sendfile() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.sendfile() method in Python is used to copy specified number of bytes from spe
      2 min read

    • Python | os.set_blocking() method
      OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.set_blocking() method in Python is used to set the blocking mode of the specif
      2 min read

geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences