-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
37 lines (31 loc) · 1.05 KB
/
main.py
File metadata and controls
37 lines (31 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# -*- coding: utf-8 -*-
#Author FuzzLightyear - Medusa
#Note: Many functions and very scattered; meant to mess around with.
#Credit for inspiring coding the math used in game1 and game2 goes to Author Thomas Taylor
#import turtlepy
import game1
import game2
#import musicratioimproved
def main():
print("Coding Inspired By 'Theoretic Arithmetic' by Thomas Taylor")
print("Input 1 for getting the tuple valies of input n")
print("Type 2 for inputting sequence such that [x,y,z] z is y * y")
print("Type 3 for Tetractys inspired turtle patterns")
print("Type 4 for cooler Tetractys inspired turtle patterns")
promptans = int(input())
if promptans == 1:
print("Innput n")
n=int(input())
game1.game1stub(n)
elif promptans == 2:
print("Innput x y and z")
x=int(input())
y=int(input())
z=int(input())
game2.game2stub(x,y,z)
elif promptans == 3:
import turtlepy
elif promptans == 4:
import musicratioimproved
if __name__ == "__main__":
main()