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
- Host: GitHub
- URL: https://github.com/maumneto/introductioncomputerscience
- Owner: maumneto
- License: mit
- Created: 2020-07-24T13:06:57.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-30T18:15:51.000Z (over 5 years ago)
- Last Synced: 2025-01-16T06:15:14.529Z (about 1 year ago)
- Topics: classroom, programming, programming-exercises, python3
- Language: Python
- Homepage: https://maumneto.github.io/icc/index.html
- Size: 306 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# **Introduction of Computer Science Repository**
[](https://github.com/maumneto/introdComp/issues)
[](https://github.com/maumneto/introdComp/network)
[](https://github.com/maumneto/introdComp/stargazers)
[](https://img.shields.io/badge/version-1.0.0-orange)
[](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!**
