Skip to content

Instantly share code, notes, and snippets.

@meet100ni
Created May 13, 2020 06:23
Show Gist options
  • Save meet100ni/fd6e3f030ec435aef9d5dfda80d4b88e to your computer and use it in GitHub Desktop.
Save meet100ni/fd6e3f030ec435aef9d5dfda80d4b88e to your computer and use it in GitHub Desktop.
Print Table of given number in python using For Loop
if __name__ == '__main__':
n = int(input())
for i in range(n):
print(i * i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment