Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update python-for-datascience.md #2065

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

lbdelilla
Copy link
Contributor

This commit includes the translation of the Spanish version (python-for-datascience.es.md) into English to ensure consistency and alignment between both language versions.

This commit includes the translation of the Spanish version (python-for-datascience.es.md) into English to ensure consistency and alignment between both language versions.
Comment on lines 59 to 94
Sure, I'd be happy to translate that for you:

"Python is a very versatile programming language used in a multitude of cases: web development (both front and back end), mobile game development, simulations, networks, automations, and more. Additionally, it is the go-to language for working with data and developing algorithms for Artificial Intelligence, Data Science, and Machine Learning. Before we dive in, let's distinguish between the three terms mentioned:

Term Definition Scope Goal
Artificial Intelligence (AI) The study of how to make computers think and act like humans. A broad field including subfields like machine learning, robotics, natural language processing, computer vision, etc. Simulate human intelligence in machines.
Machine Learning (ML) A subfield of AI focusing on developing algorithms and models that allow computers to learn from data. A specific technique within artificial intelligence. Make predictions or decisions without being explicitly programmed.
Data Science An interdisciplinary field using statistical, computational, and analytical techniques to interpret, understand, and extract knowledge from structured and unstructured data. Involves acquiring, cleaning, analyzing, and visualizing data, and may use AI and machine learning for analysis. Discover patterns and obtain valuable insights from large datasets.
While AI focuses on simulating human intelligence, machine learning is a technique within AI that enables machines to learn from data, and data science is a broader discipline dealing with the entire process of working with data, from collection to interpretation, and may involve the use of AI and machine learning.

Basic Python Guide
Hello, World!
Every developer starting with a new language prints 'Hello, World!'. In Python, we can do it using the print function, which displays any data or text placed within its parentheses:

python
Copy code
print("Hello, World!")
Variables
A variable in Python (and most programming languages) is a container that stores data that can vary over time. This value can be a number, text, a list of elements, etc. The special thing about this container is that we can give it a name to identify it and access what it holds when needed:

python
Copy code
name = "Juan"
age = 25
height = 1.80
is_student = True
Additionally, variables are mutable and can change over time. So, just as we can access their value to read it, we can also modify it:

python
Copy code
my_number = 10
print(f"Original number: {my_number}")

my_number = 60
print(f"New number: {my_number}")
This way, we have changed the value of the variable my_number from 10 to 60.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dejaron aqui el contenido de ChatGPT

Comment on lines 205 to 224
**Logical Operators**


Sure, I'd be happy to translate that for you:

"Python is a very versatile programming language used in a multitude of cases: web development (both front and back end), mobile game development, simulations, networks, automations, and more. Additionally, it is the go-to language for working with data and developing algorithms for Artificial Intelligence, Data Science, and Machine Learning. Before we dive in, let's distinguish between the three terms mentioned:

Term Definition Scope Goal
Artificial Intelligence (AI) The study of how to make computers think and act like humans. A broad field including subfields like machine learning, robotics, natural language processing, computer vision, etc. Simulate human intelligence in machines.
Machine Learning (ML) A subfield of AI focusing on developing algorithms and models that allow computers to learn from data. A specific technique within artificial intelligence. Make predictions or decisions without being explicitly programmed.
Data Science An interdisciplinary field using statistical, computational, and analytical techniques to interpret, understand, and extract knowledge from structured and unstructured data. Involves acquiring, cleaning, analyzing, and visualizing data, and may use AI and machine learning for analysis. Discover patterns and obtain valuable insights from large datasets.
While AI focuses on simulating human intelligence, machine learning is a technique within AI that enables machines to learn from data, and data science is a broader discipline dealing with the entire process of working with data, from collection to interpretation, and may involve the use of AI and machine learning.

Basic Python Guide
Hello, World!
Every developer starting with a new language prints 'Hello, World!'. In Python, we can do it using the print function, which displays any data or text placed within its parentheses:

python
Copy code
print("Hello, World!")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mas contenido de AI

I have removed redundant information and made corrections that were not appropriate in the file python-for-datascience.md.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants