Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the Multiplication Table program in Python folder #8

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

SKRam1024
Copy link

No description provided.

print (n,"x",i,"=",(n*i))

def main():
number = int(input("Enter a no. between 1 to 10: "))
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Try to implement a IF-statement in case that the user accidently enters a different type instead of integer.
  • What will hapen if the user input is bigger than 10 or less than 0? Try to solve this case

Copy link
Owner

@karastoyanov karastoyanov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code seems fine. However, few remarks:

@karastoyanov karastoyanov added enhancement New feature or request help wanted Extra attention is needed good first issue Good for newcomers training Training Task Assigned labels Apr 5, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers help wanted Extra attention is needed training Training Task Assigned
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants