Skip to content

Instantly share code, notes, and snippets.

@mleyvaz
Created November 29, 2016 22:17
Show Gist options
  • Save mleyvaz/29a68c2bc8ad949f5cd6ae42bdb191c2 to your computer and use it in GitHub Desktop.
Save mleyvaz/29a68c2bc8ad949f5cd6ae42bdb191c2 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"collapsed": false
},
"source": [
"## Errores semánticos en python"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": true
},
"source": [
"* El orden de los operadores "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"$y={\\frac{x}{2\\pi}}$\n"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"4.71238898038469\n",
"0.477464829275686\n"
]
}
],
"source": [
"y=0.0\n",
"x=3.0\n",
"import math\n",
"y=x/2*math.pi\n",
"print(y)\n",
"y=x/(2*math.pi)\n",
"print(y)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Errores sintácticos "
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"print (2*(3-1)))"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"print (2*(3-1))"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.5.1"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment