Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Question Current Code numberOfLines = int(input(Enter number of lines for pattern: )) print() for i in range(1, numberOfLines): print(#, end=) for j in range(i): print(

Questionimage text in transcribed

Current Code

numberOfLines = int(input("Enter number of lines for pattern: "))

print("")

for i in range(1, numberOfLines): print("#", end="") for j in range(i): print(" ", end="")

Results (Incorrect, need ## for 1)

image text in transcribed

image text in transcribed

Write a program that creates a pattern like the one below. Let the user input a nonnegative integer to determine the number of lines of the pattern. ## ## ## ## ## For example, if the user enters 3, the pattern should look like this: \#\# \# SAMPLE RUN \#3: python3 TrianglePattern.py Highlight: The contents of your standard output is incorrect. Given the following was entered from the keyboard: 1 you displayed: instead of: Enternumberoofolines forpattern:\#\# Failed 2 out of 3 test runs. Failed Test Run \#1 The contents of your standard output is incorrect. Problems Detected: The contents of your standard output is incorrect. Given the following was entered from the keyboard: 1 you displayed: Enteronumberof'lines for pattern: : instead of: Enternumberoflines forpattern:\#\# \# Failed 2 out of 3 test runs. Failed Test Run \#2 The contents of your standard output is incorrect. Expected Result: Enter.number.of lines for pattern 55 \#\# ##+ \#\# ## ##

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

The Database Experts Guide To Database 2

Authors: Bruce L. Larson

1st Edition

0070232679, 978-0070232679

More Books

Students also viewed these Databases questions

Question

What is a null hypothesis?

Answered: 1 week ago