Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Variables | Basics
Introduction to Data Analysis in Python
course content

Contenido del Curso

Introduction to Data Analysis in Python

Introduction to Data Analysis in Python

1. Basics
2. Data Types
3. Control Flow
4. Functions and Modules
5. Introduction to NumPy

bookVariables

Variables are used to store information inside the program.

To assign value to a variable, please use = sign like so:

123
number = 5 string = 'cat' print(number, string)
copy
Choose the correct output of this code

Choose the correct output of this code

Selecciona la respuesta correcta

¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 1. Capítulo 6
some-alt