Bueno, a pedido del público, primero les paso algunas soluciones que me han enviado a los problemitas planteados con anterioridad:<br><b><br>Sobre la tabla (en python):</b><br><br><span style="color: rgb(0, 0, 153);">#!/usr/bin/env python</span><br style="color: rgb(0, 0, 153);">
<span style="color: rgb(0, 0, 153);"># -*- coding: cp1252 -*-</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">numero = raw_input("Ingrese el número: ")</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">numero = int(numero)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print str(numero) + " x 1 = " + str(numero * 1)</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">print str(numero) + " x 2 = " + str(numero * 2)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print str(numero) + " x 3 = " + str(numero * 3)</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">print str(numero) + " x 4 = " + str(numero * 4)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print str(numero) + " x 5 = " + str(numero * 5)</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">print str(numero) + " x 6 = " + str(numero * 6)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print str(numero) + " x 7 = " + str(numero * 7)</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">print str(numero) + " x 8 = " + str(numero * 8)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print str(numero) + " x 9 = " + str(numero * 9)</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">print str(numero) + " x 10 = " + str(numero * 10)</span><br><br><b>Otro:</b><br><br><span style="color: rgb(0, 0, 153);">#!/usr/bin/python</span><br style="color: rgb(0, 0, 153);">
<span style="color: rgb(0, 0, 153);"># -*- coding: utf-8 -*-</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">tabla = raw_input("Escribe un número: ")</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">tabla = int(tabla)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print tabla,"X 1 =",tabla*1</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print tabla,"X 2 =",tabla*2</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">print tabla,"X 3 =",tabla*3</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print tabla,"X 4 =",tabla*4</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">print tabla,"X 5 =",tabla*5</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print tabla,"X 6 =",tabla*6</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">print tabla,"X 7 =",tabla*7</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print tabla,"X 8 =",tabla*8</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">print tabla,"X 9 =",tabla*9</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">print tabla,"X 10 =",tabla*10</span><br><br><b>Un avanzado:</b><br>
<br style="color: rgb(153, 0, 0);"><span style="color: rgb(0, 0, 153);">#!/usr/bin/env python</span><br style="color: rgb(0, 0, 153);"><span style="color: rgb(0, 0, 153);"># -*- coding: UTF-8 -*-</span><br style="color: rgb(153, 0, 0);">
<br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">numero = raw_input("Ingresa un numero: ")</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">for i in range(1, 11):</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">    resultado = int(numero)*i</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    print numero, "x", i, "=", resultado</span><br><br><br>
<b>Sobre calendario (con bash):</b><br><br style="color: rgb(153, 0, 0);"><span style="color: rgb(0, 0, 153);">#!/bin/sh</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">mes=$(date +%-m) #obtener mes actual</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">anio=$(date +%Y) #obtener año actual</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(0, 0, 153);">#Si mes >= 10 imprime 10 meses a partir del mes actual</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">if [ $mes -ge 10 ]; then</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    let c=$mes+9</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    for i in `seq $mes $c`;</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">            do        </span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            cal -m $i;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            done</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">else </span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(0, 0, 153);">#Si mes < 10 resta 1 al anio e imprime meses hasta el 12</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">    let mesult=$mes+3</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    let anioprev=$anio-1</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    for mesult in `seq $mesult 12`;</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">            do</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            cal -my $mesult $anioprev;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            done</span><br style="color: rgb(153, 0, 0);">
<br style="color: rgb(153, 0, 0);"><span style="color: rgb(0, 0, 153);">#Imprime meses 1 hasta el mes actual</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    for mes in `seq 1 $mes`;</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">            do</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            cal -my $mes $anio;</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            done</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">fi</span><br><br><b>Otro, cortito y al pié:</b><br><br><span style="color: rgb(153, 0, 0);">for i in {2001..2011}; do cal $i; done</span><br><br><br>Y seguimos con la segunda parte sobre tipos de datos básicos de python: <a href="https://sites.google.com/site/sugaractivities/home/curso-pygame/tipos-de-datos-basicos-de-python-2a-parte">https://sites.google.com/site/sugaractivities/home/curso-pygame/tipos-de-datos-basicos-de-python-2a-parte</a><br>
<br><br>