Write a program that prints out the poem

Assignment Help Python Programming
Reference no: EM133087556

Lab4-Strings, Substrings and Files

Exercise

Question 1. Write a program to count and display how many times the substring notice appears in the string:

Question 2. Write a program that splits each line of the following limerick into two halves and displays them on alternating lines with dashes taking up the space of the 'left' half (before the 'right' half is printed):
The limerick packs laughs astronomical
Into space that is quite economical
But the good ones I've seen
Very seldom are clean
And the clean ones so seldom are comical.

Question 3. Write a program that opens the provided file alice_in_wonderland.txt and reads it into a list of lines (don't forget to close the file when you've done so!).Then, ask the user to enter a word to search for. Once you have a word, search through all the lines of text in the book counting how many times that word occurs in a case-insensitive manner, and then display the final count.

Question 4. Write a program that takes a string from the user and converts it into MiXeDCaSe- that is, each alphabetical character in the string should alternate between upper and lower case (don't try to change digits or punctuation into upper or lower case).

Question 5. Here's a function that calculates the prime numbers between an interval and returns a list of those values:

defget_primes_in_range(start, end):
prime_list = []

fornum in range(start, end + 1):
if num> 1:
found_divisor = False
fori in range(2, int(num/2)+1):
if (num % i == 0):
found_divisor = True
break

if (found_divisor == False):
prime_list.append(num)

return prime_list

So if you ran get_primes_in_range(2, 10) it would return you the list [2, 3, 5, 7, 9]

Write a program that asks the user for two integer values and a string for a filename. Then run the get_primes_in_range() function with the values the user provided and get the returned list.

Question 6. CHALLENGE TASK: Write a program that programmatically prints out the following poem. Think about how you might go about it - design it on paper if you like. It's definitely a problem, but not a terribly hard one - and when you break it down there's really only just a handful of steps involved.

Reference no: EM133087556

Questions Cloud

Effectiveness of the workforce : Bloomfield Designers is a UK fashion retailer which designs and sells its own brand of women's clothes through its chain of shops in Wales. However, it is facin
Write a small program that uses pythons logging module : Write a small program that uses Python's logging module to log five different log messages, each with different levels of importance
Burglary crimes and robbery crimes : Research two online news-related articles: one related to burglary crimes and one related to robbery crimes.
Behavioral characteristics of criminal psychopath : Briefly describe the core behavioral characteristics of the criminal psychopath. Locate either a female or male criminal psychopath in an internet search.
Write a program that prints out the poem : Write a program that asks the user for two integer values and a string for a filename and Write a program that programmatically prints out the poem
Write a small Python script that asks the user for a name : Write a small Python script that asks the user for a name, and then prints the name 10 times and calculate the cost of a single pizza order
Evaluate how society defines crime : Evaluate how society defines crime. Illustrate how we know that this is an accurate statement. Explain why this myth is so difficult to abandon.
Homicide and murder real-world material : Consider the case of the Olympic bomber, Eric Rudolph, a domestic terrorist whose bombings resulted in the deaths of two individuals.
Create an ai model : What are the two options we have when want to create an AI model? Which two types of learning do we have available?

Reviews

Write a Review

Python Programming Questions & Answers

  A stack data structure that uses a linked list for storing

In Python, implement a stack data structure that uses a linked list for storing its elements. In particular, you will need to implement the following three functions: 1. top(): This function returns the element that is at the top of the stack, but it..

  Accept low and high isobar values

Accept low and high isobar values and inform the user of saturated properties for these pressures and allow the user to decide if the turbine inlet state

  Calculates the median and shows it

User enters the titles of 4 of their favorite moveis.Program Reads the 4 titles from myMovies txt stores them in a list and shows the list

  The dictionary order based on the ascii order

Needless to say, the dictionary order based on the ASCII order is not what a real-world indexing software wants. So, we want to implement the dictionary order of strings in the standard wa

  Write a program that does simple packet routing

Write a program that does simple packet routing and your program will take three command-line arguments:

  Create your own example of a function that modifies a list

Create your own example of a function that modifies a list passed in as an argument. Describe what your function does in terms of arguments, parameters.

  Write a question class to hold the data for trivia question

To create this program, write a Question class to hold the data for a trivia question. You write a short description of what the program will do.

  Find a random number import random

Find a random number import random - you are responsible for completing the program by adding the proper

  Provide an example of an array

Lists and arrays can be valuable tools for the programmer. Provide an example of a ‘list' and explain how it would be used as part of a problem solution.

  Search the web for a real world graph

Perform the same type of work as outlined in the video for Lecture 20 and part 1 of Lecture 21 and the corresponding jupyter notebook

  Create a python program that allows user enter class name

Create a Python program that allows user enter class name, faculty name, name of each student, and letter grade each student earned.

  How to calculate square or rectangle edges and center

How to calculate square or rectangle edges and center. You just need one formula for edges and one formula for centers.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd