Create a program that inputs a number and then finds the prime factors of that number. Remember to take advantage of mathematical operations and conditionals. Print out the factors at the end of the program.
See Full ProjectWrite a function that represents the count function. This program will take in a string and letter, and print out the number of times the letter appears in the word. Of course, you may not use the count function.
See Full ProjectCreate a program that takes a certain number of integers and floats. Then calculate the mean, median, and mode of the list. Print the three values out.
See Full ProjectCreate a rock, paper, scissors game. To do so, you will need to research and implement a random number generator in python. Once you do so, you will be able to create numerous games, with rock, paper, and scissors being one of the most basic ones.
See Full Project