Skip to content

IanBurke1/Python-Fundamentals-Problem-Sheet

Repository files navigation

Problem Sheet 1: Python Fundamentals

Emerging Technologies - Lecturer: Dr Ian McLoughlin - 4th Year (Hons) Software Development

This repository contains solutions to problem sheet 1 for Emerging Technologies 4th year module. The problem sheet contains a few problems from around the internet to learn the fundamentals of Python

Solution can be found above

How to run

  1. Click here to download zip of the repository
  2. Unzip the repository in a directory e.g. Desktop
  3. Open up a command terminal
  4. Enter the following to run each python script:
 python 01-HelloWorld.py

How to clone this repository

  1. Go to clone or download (should be on right side of the repository in green)
  2. Copy the URL.
  3. Open up git bash and change into a directory where you want to save the git repository.
  4. Enter git clone followed by the link:
git clone https://github.com/ianburkeixiv/Python-Fundamentals-Problem-Sheet.git

Python

PyPI

Python is an object-oriented, high-level programming language with integrated dynamic semantics primarily for web and app development. It is extremely attractive in the field of Rapid Application Development because it offers dynamic typing and dynamic binding options.

References

pythonforbeginners

Emerging Technologies