ACCURATE SOLUTIONS
Python - Precise Answer ✔✔interpreted programming language known
for its simplicity, readability, and versatility
supports multiple programming paradigms, including procedural, object-
oriented, and functional programming, making it adaptable to different
coding styles.
Python is - Precise Answer ✔✔readable
dynamically typed
extensive standard library
cross plat
versatile
interpreted nature
Programming Paradigm - Precise Answer ✔✔a fundamental style or
approach to programming that dictates how tasks should be structured
and executed in each programming language. It encompasses principles,
concepts, and patterns that guide the design and organization of code.
imperative/procedural programming - Precise Answer ✔✔focuses on
describing a sequence of steps to perform a task, procedures or routines.
,object-oriented programming (OOP) - Precise Answer ✔✔organizes
code around objects, which encapsulate data and behavior
functional programming - Precise Answer ✔✔emphasizes the use of
functions and immutable data for computation
declarative programming - Precise Answer ✔✔describes what the
program should accomplish without specifying how to achieve it
event-driven programming - Precise Answer ✔✔reacts to events and
user actions, triggering corresponding functions
logic programming - Precise Answer ✔✔defines a set of logical
conditions and lets the system deduce solutions
indentation - Precise Answer ✔✔defines blocks of code. crucial for
structure and nesting of code blocks
(4 spaces)
comments - Precise Answer ✔✔#
ignored by interpreter, for humans
, Variable - Precise Answer ✔✔used to store data, created by assigning a
value to a name
Data Types - Precise Answer ✔✔integers, floats, strings, lists, tuples,
dictionaries
conditional statements - Precise Answer ✔✔if, else, elif (else if)
Classes - Precise Answer ✔✔(also objects) fundamental to object
oriented programming in python.
print () - Precise Answer ✔✔used to output data to the console
print ("hello")
functions - Precise Answer ✔✔defined using def
def greet(name):
print ("Hello, name")
run python script in cmd prompt - Precise Answer ✔✔python script.py
How to run phython script in Python3 - Precise Answer ✔✔python3
script.py