An open API service indexing awesome lists of open source software.

https://github.com/maumneto/introductioncomputerscience

Repositório dos códigos referente a disciplina de Introdução a Ciência da Computação
https://github.com/maumneto/introductioncomputerscience

classroom programming programming-exercises python3

Last synced: 11 months ago
JSON representation

Repositório dos códigos referente a disciplina de Introdução a Ciência da Computação

Awesome Lists containing this project

README

          

# **Introduction of Computer Science Repository**

[![GitHub issues](https://img.shields.io/github/issues/maumneto/introdComp)](https://github.com/maumneto/introdComp/issues)
[![GitHub forks](https://img.shields.io/github/forks/maumneto/introdComp)](https://github.com/maumneto/introdComp/network)
[![GitHub stars](https://img.shields.io/github/stars/maumneto/introdComp)](https://github.com/maumneto/introdComp/stargazers)
[![GitHub](https://img.shields.io/badge/version-1.0.0-orange)](https://img.shields.io/badge/version-1.0.0-orange)
[![GitHub license](https://img.shields.io/github/license/maumneto/introdComp)](https://github.com/maumneto/introdComp/blob/master/LICENSE)

This repository goal is to provide support for students of the Introduction of Computer Science course during the development of their programs using the Python 3 language. It also contains the codes of the problems presented in this course.

-----

## **About Maintainer**

- Prof. Maurício Moreira Neto
- Lattes: [Link para Currículo Lattes](http://lattes.cnpq.br/7534400645876830)
- E-mail:
- Professor's Website: [http://lia.ufc.br/~maumneto/](http://lia.ufc.br/~maumneto/)
- Course Website: [ICC Website](https://maumneto.github.io/icc/index.html)

-----

## **Contents**

- Each `folder` in this repository has a set of Python files referring to the questions presented in the class.

- The solution of these questions is fundamental to fixing the content taught (besides being fun: smile :)

- The diagram of the repository files is shown below:

```markdown
introdComp/

├── CodeClasses/
│ ├── reviewCodes/
│ │ ├── cod1.py
│ │ ├── cod2.py
│ │ └── ...
│ ├── conditionalCodes/
│ │ ├── cod1.py
│ │ ├── cod2.py
│ │ └── ...
.
.

├── QuickProjects/
│ ├── jokenpo-simples.py
│ └── ...

├── gitignore
├── LICENSE
└── README.md
```

-----

## **Running Python Code**

- Here, it is assumed that you already have Python 3 installed

- To running codes just open the `terminal` (if it is in *windows* you'll use the `prompt` or `cmd`) and change the directory where the code you want to run is

- Within the directory target execute:

```console
python3 program_name.py
```

- **Example:**

> first_code.py

```python
print('Hello World! This is my first code in Python!')
```

In the terminal, go to the directory where the code is located and run:

```terminal
python3 first_code.py
> Hello World! This is my first code in Python!
```

-----

## **Let's go coding!**

![Alt Text](https://media.giphy.com/media/LmNwrBhejkK9EFP504/giphy.gif)