Advertisement
Guest User

Untitled

a guest
Oct 18th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.93 KB | None | 0 0
  1. # Hauptmenü
  2. lines()
  3. print ("\n\t\t\tProgramm zum Erstellen von Koordinaten für Ebert Abrichter")
  4. lines()
  5. print ("\n\n\n (1)   Flachkopf mit Schräge")
  6. print (" (2)   Flachkopf mit Kontur")
  7. print (" (3)   Senkkopf mit Schräge")
  8. print (" (4)   Senkkopf mit Kontur")
  9. print (" (5)   Hilfe")
  10. print (" (6)   Beenden ")
  11.  
  12. choose = input("\n\n\n Welche Option wählen Sie? > ")
  13.  
  14.  
  15. # Auswahl Otionen
  16. if choose == "1":
  17.     help()
  18.  
  19.     SchaftDurchmesser = float(input("\n\nSchaftDurchmesser > "))
  20.     TD                = float(input("TD                > "))
  21.     Schaftlänge       = float(input("Schaftlänge       > "))
  22.     Radius            = float(input("Radius            > "))
  23.     Schräge           = float(input("Schräge           > "))
  24.  
  25.  
  26.     print ("\n\nEngegebene Daten : ")
  27.  
  28.  
  29.  
  30.  
  31. elif choose == "5":
  32.     clear_screen()
  33.     print ("\n\n\t\t\tProgramm erstellt von Phillip Francis\n\n\n\n")
  34.  
  35. elif choose == "6":
  36.     print ("\n\n\nProgrammende\n\n\n")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement