Python Sandbox Code Editor




#Put your code in here

Projects

Access previous projects in this directory!



  {{project.name}}  


Created: {{project.date.toDate().getMonth()}}/{{project.date.toDate().getDate()}} at {{project.date.toDate().getHours()}}:{{project.date.toDate().getMinutes()}}












Project Idea One

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 Project
Project Idea Two

Write 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 Project
Project Idea Three

Create 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 Project
Project Idea Four

Create 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