Quickhubservice's Posts
Nairaland Forum › Quickhubservice's Profile › Quickhubservice's Posts
1 2 3 4 5 6 7 8 9 10 (of 10 pages)
As a Nigerian online shopper Say goodbye to the hassle of shopping from US online stores with Quick-hub Services! Our online pre-order and checkout service makes it easy for you to purchase items from popular retailers like eBay, Amazon, and AliExpress, no matter where you are. With Quick-hub Services, you can pre-order items, track your packages and make payments with ease. Our platform provides a smooth and secure checkout process, ensuring that your personal information is protected at all times. Plus, our customer support team is always available to help you with any questions or concerns you may have. Don't let distance, naira card issues, currency rates & currency conversion hold you back from shopping your favorite US stores. Try Quick-hub Services today and experience the convenience of seamless online shopping. Order now and get a special 10% discount on your first purchase! Visit our profile for more info @this_is_quickhub
|
Send in deals my people |
Many has worked with us and can attest to our reliability in what we do
|
Still having difficulties purchasing from any foreign or online US stores. Let's help simplify the process and make it very easy to pay for items from online stores @ unbelievable dollar to naira rates. Hit us up today for more info
|
Active item checkout ![]() |
Still active ![]() |
Send in ur links
|
Still active
|
Hello ![]() |
Hello |
Hello |
Hello |
Inexpensive checkout |
Hello |
Hello |
Payments made Easy |
Want to make a purchase online, maybe want to gift yourself or loved ones items from a foreign online store but can't? Let quickhub online preordering services handle this for you... Buy from your favorite online stores at unbelievable $ rates. Currently offering checkouts for Ebay, Amazon, AliExpress etc. Send in your item links let's make those payments for you
|
Currently offering checkouts for .Ebay .amazon . AliExpress etc
|
Quickhub online stores preordering services is here to make your Christmas a memorable one... Buy gift from different US online stores at dollar rate that don't break the bank. Let's help you get those items that would put a smile across your loved ones faces ![]() Hit us up today for best deals
|
I'm looking to buy any US simcards that is available. If you do have please drop a comment below with your price and phone number. Thank you |
methods would help
|
Hello @Mrandre07, sorry I can't reply you in the phone section, I got banned from posting or replying to any post. In regards to your question: ""Hello, are your services really legit? I hope there is no underhand dealing or motive behind them? What about purchases and shipping methods on AliExpress or Amazon? Fruad is on the rise of late as a result of bad government. So it is better your legitimacy is ascertained through actionable and tenable facts and proofs."" My services are 100% legit and have had the benefit of dealing with a number of nairalanders who can confirm to it. Please this is a no fraud zone |
Sorry I haven't updated this in a while ... Will do so later today. Have been occupied with work and still learning about this with the spare time I get. |
MrAndre07:Hello, I'm sure I made mention of how the battery health on the laptop is above. The PC is still available and price still remains negotiable cheers |
Quickhub at your service ![]() |
Quickhub services is still active |
LISTS: So lists as we all know can serve to hold some sets of information we need like when going to the markets or just maybe a list of stuffs we want to do in a day. Anyhow it is lists are used to store a collection of items or information. same applies in python, lists are collection of items in a particular order. Examples list of numbers 1 - 9, a list of people in your family etc. This is how a list looks like in python: vehicles = [ "motorcycles", "cars", "airplanes", "train", ] The above is a list of vehicles and this is how we store lists in python. When we call this list or ask python to print it we get: print(vehicles) >>> [ "motorcycles", "cars", "airplanes", "train", ] ACCESSING ELEMENTS IN A LIST: We use index numbers to access items stored in any list that we create. for example to access the first item on our list vehicle we use: print(vehicles[0]) >>>"motorcycles" Notice how we use the number 0 for the first item, this is how we index each item in out list starting with the number 0 and working our way to the last item. we can also do what we call negative indexing to access values at the end of our lists. For example to call the last number we use "-1": print(vehicles[-1]) >>>train And just like when using positive numbers we will work our way to the first item. We can also use some functions on individual items in our lists such as .upper(), .lower(), .title() and so on. Note: to use this functions on the whole items in our list we use the "f" function when applying them. for example: print(f"{vehicles}".title()) |
NUMBERS: In python we can carry out arithemetic operations on integers such as addition (+) subtraction ( - ) multiplication ( * ) division ( / ) power ( ** ) 3 ** 2 >>> 9 3 * 2 >>>6 ( 2 + 3 ) * 4 >>>20 any number with a decimal place in python is referred to as a float. Also when we divide two or more numbers the result is float. integer/integer = float integer/float = float float/integer = float CONSTANTS; A constant is a variable whose value stays the same throughout the lifetime of the program its used in. Using all capital letters indicate that a variable should be treated as a constant. MAX_CONNECTIONS = 50000 The above will be saved as a constant COMMENTS: when writing codes as a programmer it's really good ethics to make your codes as readable and organized as possible. Comments are used to write notes in programs. These notes can be explanations of what each line or lines of a code does. Comments don't get executed by python. In python the '#' indicate a comment |


