This repository contains solutions to two Python tasks focusing on simulated drone movement using the Turtle module and TCP socket communication between sender and receiver programs.
This Python program simulates drone movement utilizing the Turtle module. The drone can navigate in four directions: forward, backward, left, and right.
- Ensure you have Python (3.6+) installed.
- Clone this repository to your local machine.
- Navigate to the repository directory.
- Run the following command to execute the program:
python Q1.py
This section consists of two Python programs enabling communication between a sender and receiver using TCP sockets.
-
Ensure Python (3.6+) is installed.
-
Clone this repository to your local machine.
-
Navigate to the repository directory.
-
Open two terminals and follow these steps:
-
Terminal 1 (Receiver):
python Q2_receiver.py
-
Terminal 2 (Sender):
python Q2_sender.py
-