-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
PROJECT_LANG_3.py
32 lines (25 loc) · 1.73 KB
/
PROJECT_LANG_3.py
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
#!/usr/bin/env python
# Start of script
class projectLanguageFileThree():
def plang3():
print("Project Language File 3\n")
print("For: Mesdows/qMeadows")
print("About:")
print("I decided to make the third project language file for this project (Meadows/qMeadows) to be Python, as Python is a good application level language to use, and one of the few languages I know works well with Quantum computing. It is going to be used alongside Q# (and other languages) in the application layer. C will be used for more complicated tasks, while Python will be used for simpler tasks, and will be used more than other application layer languages. It is getting its own project language file, starting here.")
break
return plang3()
noMore = input("Press [ENTER] key to quit")
print("The program should now be closed. If the program is still running, try closing the window with the close button. If this doen't work, end the task/process with a task/process manager")
break
return 0
''' Output '''
# Project language file 3
# For: Meadows/qMeadows
# About
# I decided to make the third project language file for this project (Meadows/qMeadows) to be Python, as Python is a good application level language to use, and one of the few languages I know works well with Quantum computing. It is going to be used alongside Q# (and other languages) in the application layer. C will be used for more complicated tasks, while Python will be used for simpler tasks, and will be used more than other application layer languages. It is getting its own project language file, starting here.
""" """
# File info
# File version: 1 (2022, Tuesday, May 24th at 4:27 pm PST)
# File type: Python 3 source file (*.py)
# Line count (including blank lines and compiler line): 33
# End of script