Python Programming
Factoring of integers. Write a program that asks the user for an integer and then prints out all its factors. For example, when the user enters 150, the program should print.
INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS
- (20 points) Factoring of integers. Write a program that asks the user for an integer and then prints out all its factors. For example, when the user enters 150, the program should print
- 2
- 3
- 5
- 5
You need to check user's input first to make sure it is an integer.
- (20 points) The Drunkard’s Walk. A drunkard in a grid of streets randomly picks one of four directions and stumbles to the next intersection, then again randomly picks one of four directions, and so on. You might think that on average the drunkard doesn’t move very far because the choices cancel each other out, but that is actually not the case.
Write a function to calculate the Manhattan distance after n intersections.
- (10 points) Use Turtle to draw the drunkard's walk in #3.
- (20 points) Find out how many words in the text file, drunkard_words.txt, are good words.
A good word should:
- contain at least three vowels (aeiou only).
- contain at least one letter that occurs twice in a row.
- not contain any of the disallowed strings even if they are part of above requirements. The disallowed strings are ab, cd and xy,
- (10 points) Find out how many words in the text file, drunkard_words.txt, are awesome words.
A awesome word should:
- contain a combination of any two adjacent letters that occurs at least twice in the same word without overlapping. For example, abcdefgab is awesome (because ab appears twice), but zzz is not.
- contain at least a xyx-type substring. For example: aba, abcdefegh (because of efe), or even zzz.
Related Questions
. The fundamental operations of create, read, update, and delete (CRUD) in either Python or Java
CS 340 Milestone One Guidelines and Rubric
Overview: For this assignment, you will implement the fundamental operations of create, read, update,
. Develop a program to emulate a purchase transaction at a retail store. This program will have two classes, a LineItem class and a Transaction class
Retail Transaction Programming Project
Project Requirements:
Develop a program to emulate a purchase transaction at a retail store. This
. The following program contains five errors. Identify the errors and fix them
7COM1028
Secure Systems Programming
Referral Coursework: Secure
. Accepts the following from a user: Item Name Item Quantity Item Price Allows the user to create a file to store the sales receipt contents
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
. The final project will encompass developing a web service using a software stack and implementing an industry-standard interface. Regardless of whether you choose to pursue application development goals as a pure developer or as a software engineer
CS 340 Final Project Guidelines and Rubric
Overview The final project will encompass developing a web service using a software stack and impleme