Skip to content

Python Assignment 1

(Due on 28/2/2025)

TIP

This Page supports running Python directly from your browser!

Click for more details. If this feature is not working as expected, please report it to us on Github!

WARNING

This will not work if your browser is too old or does not support Web Assembly/Web Workers. If you're using a privacy focused browser like cromite, please enable JavaScript JIT and WebAssembly from the permissions menu.

If the Run Button doesn't show the run or loading button, try reloading your browser!

It will take some time to load, especially if your internet is slow.

Q1. Explain the Features of Python

Python has many useful characteristics:

  • Python is easy to learn and use
  • High level language, don't need to bother with low level concepts like Garbage Collection and more.
  • Python is interpreted, where the code executes line-by-line so you know where the error came from.
  • Python is Open Source
    • Python software and documentation are licensed under the Python Software Foundation License Version 2.
    • Starting with Python 3.8.6, examples, recipes, and other code in the documentation are dual licensed under the PSF License Version 2 and the Zero-Clause BSD license.
  • Don't need to port apps between platforms, it runs as-is on any supported platform

Q2. Explain Tokens with examples

TokensExplanationSome Examples
KeywordReserved Words, cannot use as Identifiers.\nThey have a distinct meaningTrue, for
IdentifierName that is given to class, function, variable, etca = 5 Here, a is the identifier
OperatorPerforms a specific action with the given operandsa+5 Here, + is the operator and it will add the value of a and 5 together
LiteralData Elements with a fixed valuelists, tuples, dictionaries
PunctuatorsUsed to structure the sentences and syntax of python code,, #, \, (), {}

Unacademy

Q3. Explain the Applications of Python

  • Web Development: Django and Flask to make websites
  • Data Analysis: Graphing libraries like numpy, scipy to visualize data
  • AI Libraries
  • Game development using PyGame
  • Web Scraping using Selenium Browser
  • Desktop GUI apps using TKinter, PyQT, etc

Q4. Explain different Data Types of Python

CategoryType NamesDescription
TextstrTextual data representation(string)
Numericint, float, complexNumbers with various precision
Sequencelist, tuple, rangeOrdered collection containers
MappingdictKey-value pair associations
Setset, frozensetUnique element collections
BooleanboolTrue/False value storage
Binarybytes, bytearray, memoryviewBinary data handling
NoneNoneTypeRepresentation of null

W3Schools

Q5. Explain Different Types of Conversion with Examples

  • Implicit conversion or coercion is when data type conversion takes place either during compilation or during run time and is handled directly by Python for you.
    • Example:
      python
      a_int = 1
      b_float = 1.0
      c_sum = a_int + b_float
      print(c_sum)
  • Explicit data type conversion, often referred to as type casting, occurs when you deliberately convert a value from one data type to another
    • Syntax: target_data_type(expression)
    • Example:
      python
      a = int(3.14)
      print(a)

DataCamp