Create a suitable text file to use with a high-level programming language containing a list of product
details, including a GTIN-8 product code, a product description and price.
The program should allow a user to enter GTIN-8 codes for a list of products they wish to purchase
and the quantity required of each product. The program should search the stock file to produce a list of
products with their descriptions, prices, cost for each of the quantity selected and the total cost for all of
the products. The program should also identify products not found.
34512340 plain brackets 4 0.50 2.00
98981236 product not found
56756777 100 mm bolts 32 0.20 6.40
90673412 L-shaped brackets 6 1.20 7.20
Total cost of order 15.60
Analyse the requirements for this system and design, develop, test and evaluate a program to allow a
user to enter GTIN-8 codes for a list of products and a quantity. The program should produce a receipt,
i.e. a list of products with descriptions, prices, cost for each of quantity selected and the total cost of all
the products ordered.
will pay you to write a python program and pseodocode for me
will pay in csgo skins or paypal
50$
Contact info? Or just add me on skype: rotmgdeca
terenceliu_22
- - - Updated - - -
terenceliu_22 myskype
i've finished that task btw
i've got another task though
- - - Updated - - -
terenceliu_22 myskype
i've finished that task btw
i've got another task though
i'll take photo of task at school
need it in about 1 and half week max
including pseodocode
@Darkenforcer22
If you have Python code done Pseudocode is easy if you can cope with the immorality of cheating (Considering what you are asking I guess you can) and if your school marks on the AQA standard you can use this program: https://******.com/gbaman/Python-To-AQA-Pseudocode
Originally Posted by WolfLordSky
@Darkenforcer22
If you have Python code done Pseudocode is easy if you can cope with the immorality of cheating (Considering what you are asking I guess you can) and if your school marks on the AQA standard you can use this program: https://******.com/gbaman/Python-To-AQA-Pseudocode
it outputs this error
the file is correct
Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:18:55) [MSC v.1900 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>>
==================== RESTART: E:/python to pseodocode.py ====================
Now working on task2 draft.py
Traceback (most recent call last):
File "E:/python to pseodocode.py", line 345, in <module>
main(pythonFile)
File "E:/python to pseodocode.py", line 298, in main
svgfile = getTextFile(filename) #Converts text file to a list of lists
File "E:/python to pseodocode.py", line 25, in getTextFile
file = open(filep)
FileNotFoundError: [Errno 2] No such file or directory: 'task2 draft.py'
Originally Posted by Darkenforcer22
it outputs this error
the file is correct
Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:18:55) [MSC v.1900 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>>
==================== RESTART: E:/python to pseodocode.py ====================
Now working on task2 draft.py
Traceback (most recent call last):
File "E:/python to pseodocode.py", line 345, in <module>
main(pythonFile)
File "E:/python to pseodocode.py", line 298, in main
svgfile = getTextFile(filename) #Converts text file to a list of lists
File "E:/python to pseodocode.py", line 25, in getTextFile
file = open(filep)
FileNotFoundError: [Errno 2] No such file or directory: 'task2 draft.py'
Are you making sure to change the "pythonFile =" line to your python file. They both have to be in the same folder and you just put the name of the .py file no E:/ or anything...
EDIT:
I see your problem... check the name of the file you put in...
FileNotFoundError: [Errno 2] No such file or directory: 'task2 draft.py'
can i ask if there is such thing as a marketplace for ready made code
- - - Updated - - -
if so please link me to it
Originally Posted by Darkenforcer22
can i ask if there is such thing as a marketplace for ready made code
- - - Updated - - -
if so please link me to it
StackOverflow? Lol
Originally Posted by WolfLordSky
StackOverflow? Lol
i meant to buy (the private ones that cannot be found on internet)
Dude legit just copy off stack and change EVERYTHING you can without editing the basic code lol...
Originally Posted by WolfLordSky
Dude legit just copy off stack and change EVERYTHING you can without editing the basic code lol...
wouldnt the examiners suspect plagerism? cos they may check the sites
If you get something off a website EG: StackOverflow, MPGH etc... And change enough words to make it different enough they shouldn't suspect anything. If you want to check you can just run it through Google.
For Example:
Code:
import bcrypt
from getpass import getpass
master_secret_key = getpass('tell me the master secret key you are going to use')
salt = bcrypt.gensalt()
combo_password = raw_password + salt + master_secret_key
hashed_password = bcrypt.hashpw(combo_password, salt)
Shows up with: http://stackoverflow DOT com/questions/12042724/securely-storing-passwords-for-use-in-python-script