Skip to content

Breakout Room 14 - Implementing Mad Libs Generator#15

Open
anselrognlie wants to merge 1 commit intomainfrom
Breakout-Room-14
Open

Breakout Room 14 - Implementing Mad Libs Generator#15
anselrognlie wants to merge 1 commit intomainfrom
Breakout-Room-14

Conversation

@anselrognlie
Copy link
Copy Markdown

No description provided.

Copy link
Copy Markdown
Collaborator

@DanaMJZ DanaMJZ left a comment

Choose a reason for hiding this comment

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

Looks good overall. please consider the changes mentioned.

Comment thread main.py
// Displays the story based on the users input
print ("------------------------------------------")
print ("Be kind to your",noun,"- footed", plural_noun)
print ("For a duck may be somebody's", seond_noun,",")
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

Please fix spelling error ; seond_noun is typo. it should be second_noun.

Comment thread main.py
third_noun = input("Choose a noun: ")
// Displays the story based on the users input
print ("------------------------------------------")
print ("Be kind to your",noun,"- footed", plural_noun)
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

Please consider python style code PEP8.

Suggested change
print ("Be kind to your",noun,"- footed", plural_noun)
print (f"Be kind to your {noun}- footed {plural_noun}")

Comment thread main.py
print ("------------------------------------------")
print ("Be kind to your",noun,"- footed", plural_noun)
print ("For a duck may be somebody's", seond_noun,",")
print ("Be kind to your",plural_noun,"in",place)
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

Please follow PEP8 style mentioned previously.

Comment thread main.py
Comment on lines +17 to +19
print ("Where the weather is always",adjective,".")
print ()
print ("You may think that is this the",third_noun,",")
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

Please follow PEP8 style mentioned previously.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants