tablas de multiplicar


/ Published in: Python
Save to your folder(s)



Copy this code and paste it in your HTML
  1. print"que tabla quieres?"
  2. numero = int(input())
  3. print "tabla del",numero
  4. for variable in range(0,11):
  5. print numero,"x",variable,"=",numero * variable

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.