-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPROJECT_LANG_1.py
More file actions
28 lines (21 loc) · 1.56 KB
/
PROJECT_LANG_1.py
File metadata and controls
28 lines (21 loc) · 1.56 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
#!/usr/bin/env python
# Start of script
''' Project language file 1 '''
class projectLanguageFileOne():
print("Project Language File 1\n")
print("For: seanpm2001/Learn-CPython")
print("About:\n")
print("I decided to make Python the main project language file for this project (Seanpm2001/Learn-CPython) as Python is the language this project is dedicated to, because this project is about learning the Python programming language. It only makes sense to Python the official language for this project. It is getting its own project language file, starting here. This project uses the default CPython implementation of Python.")
noMore = input("\nPress [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")
""" Output """
# Project language file 1
# For: seanpm2001/Learn-CPython
# About:
# I decided to make Python the main project language file for this project (Seanpm2001/Learn-CPython) as Python is the language this project is dedicated to, because this project is about learning the Python programming language. It only makes sense to Python the official language for this project. It is getting its own project language file, starting here. This project uses the default CPython implementation of Python.
break
''' File info '''
# File version: 1 (2022, Saturday, October 29th at 10:40 pm PST)
# File type: Python 3 source file (*.py *.py3 *.pyt *.pyw)
# Line count (including blank lines and compiler line): 29
# End of script