|
Tech Jobs › Re: I Need A Php (or Python) Developer (to Build Soap Webservices) by BunchObute(op): 10:07am On Dec 07, 2018 |
Thanks, this opportunity have been taken. Closed!!! |
Tech Jobs › I Need A Php (or Python) Developer (to Build Soap Webservices) by BunchObute(op): 1:19pm On Dec 05, 2018 |
I need a PHP (or python) Developer who has experience in building SOAP webservice for a short gig.
Reward is attractive, call 08039688395 if you are up to it. |
Programming › Re: Survey - People Interested In Artificial Intelligence And Machine Learning by BunchObute: 11:50am On Dec 08, 2017 |
Am in |
Programming › Re: Cool Python Projects by BunchObute: 11:27pm On Apr 08, 2017 |
Argonn: Please I need a pro to check this code for me. Its a program should accept input for user and count the number of vowels and consonants. But it doesn't work.
The Code:
v_count = 0 c_count = 0 alphabets = [] vowels = ['a', 'e', 'i', 'o', 'u'] consonants []
for i in vowels: ....vowels.append(chr(ord(i)-32)) ....#update the vowels list with caps for i in range(65, 91): ....alphabet.append(chr(i)) ....alphabet.append(chr(i+32)) ....#update the alphabets list for i in alphabets: ....if i not in vowels: ........consonants.append(i) ........#update the consonants list
text = input("Enter text:\t"
for letter in text: ....if letter in vowels: ........v_count += 1 ....elif letter in consonants: ........c_count += 1 ....else: ........continue
print("vowels: " + str(v_count)) print("consonants: " + str(c_count)) I dont exactly understand the first part of your code, here is what i think should work for you (Python 2) v_count = 0 c_count = 0 vowels = ['a', 'e', 'i', 'o', 'u'] consonants [b,c,d,f,g,h,j,k,l,m,n,p,q,r,s,t,v,w,x,y,z] text = input("Enter text:\t"  text = text.lower() for letter in text: ....if letter in vowels: ........v_count += 1 ....elif letter in consonants: ........c_count += 1 ....else: ........continue print "number of vowels = ", v_count print "number of consonants = ", c_count |
Jobs/Vacancies › Re: N-POWER Lagos State Let Us Meet Here! by BunchObute: 10:55pm On Apr 08, 2017 |
AutosBay: N-power Lagos Greetings again my Hon FPs!UPDATE ON DEVICE SELECTION: BOI notified us yesterday that the HP Device earlier approved for selection by our N-Power Volunteers has been discontinued from production and would no longer be available under the HP Global Warranty even if the device were available for purchase in the local market. As such, we have immediately taken steps to withdraw the device from the N-Power Device Selection List. For the 18,640 Volunteers who had previously selected the HP device, they have been re-invited to go and select other devices. Please this window of new selection for these affected volunteers would close by Monday April 10 at 11:59PM PROMPT! Kindly help us circulate widely on ALL your various communication platforms. From the focal person Concerning this HP Device, i logged into my account and i noticed that the HP (selected device) is still they and no option to choose another device. I really want know if there is something else i should do before selecting a new device. |
Jobs/Vacancies › Re: N-POWER Lagos State Let Us Meet Here! by BunchObute: 12:45pm On Mar 15, 2017 |
Thanks to @AutosBay and the others who were at the forefront of the struggle, that's how leaders are made. God bless you all |
|
Jobs/Vacancies › Re: Apply for Paid Internship Recruitment At Ultra Media Solutions by BunchObute: 7:55am On Feb 11, 2017 |
ideologies: Please this is a great opportunity
Don't look down on it.
Last batch was not paid internship, but management have decided to pay as this will aid in ameliorating the current economic situation. How much are they going to pay? Let's know that first because some of us are already skilled in programming |
Jobs/Vacancies › Re: Efcc Recruitment by BunchObute: 11:18am On Jan 17, 2017 |
TeamBenue interview invite just dropped.
Thursday 19th.
#Owoicho working wonders! |
Jobs/Vacancies › Re: Efcc Recruitment by BunchObute: 8:30pm On Jan 10, 2017 |
Adexlexy: Do u have any news abt kogi and benue? High hopes, God's favour I pray... TeamBenue |
Jobs/Vacancies › Re: Efcc Recruitment by BunchObute: 8:30pm On Jan 10, 2017 |
Adexlexy: Do u have any news abt kogi and benue? High hopes, God's favour I pray... TeamBenue |
Jobs/Vacancies › Re: Efcc Recruitment by BunchObute: 8:29pm On Jan 10, 2017 |
Adexlexy: Do u have any news abt kogi and benue? High hopes God's favour I pray... TeamBenue |
Tech Jobs › Re: I Need A Software Company I Can Do Internship With (java Web Programmer) by BunchObute(op): 10:48am On Jan 09, 2017 |
Here's my contact:
phone: 08039688395
email: emmanuel6.obute@gmail.com |
Tech Jobs › Re: I Need A Software Company I Can Do Internship With (java Web Programmer) by BunchObute(op): 6:18am On Jan 09, 2017 |
Yes, J2EE for web. |
Tech Jobs › Re: I Need A Software Company I Can Do Internship With (java Web Programmer) by BunchObute(op): 7:21am On Jan 08, 2017 |
Ok, I will visit them. Thanks |
Tech Jobs › I Need A Software Company I Can Do Internship With (java Web Programmer) by BunchObute(op): 12:08am On Jan 07, 2017 |
Please if you have any link or connection that can help me get hooked up with any good software Company on Internship or graduate trainee basis (paid or little pay), it will be highly appreciated. I am a Java desktop & Web Programmer. I need to get busy and acquire industry based experience in this new year. |
Tech Jobs › Re: Web Based Java Programmer Needed!!! by BunchObute: 9:24am On Dec 14, 2016 |
emmybunchgz@gmail.com |
Programming › Re: The Difference Between Java And Javascript by BunchObute: 11:32pm On Dec 11, 2016 |
I particularly enjoyed your explanation, i would love to associate with you programming wise. Email me sir emmybunchgz@gmail.com worisj: javascript can be used for making apps with tech such as phonegap, and with tech such as AJAX(asynchronous Javascript And Xml) can be used to make web pages that hides interaction with the server so pages are served without reloading. Meanwhile java can do just about anything.
Java Is A Statistically Typed Language Which Means You Have To Declare All Variables And Objects While Java Script Is A Dynamically Typed One. Java Is A Full Fledge Object Oriented Language, Which Means Everything Is An Object I"ll Advice You To Start With Python So You Know The Basics Of Programming And OOP Before Moving On To Java. But It All Depends On What You Want From The Language, If You're Interested In Client Side Web Programming Use Javascript, For Enterprise Application, Desktop Apps, Android Apps And Games Use Java.
To Get Started With Javascript Google Eloquent Javascript Or Speaking Javascript, To Get Started With Java Just Google How To In Java, Or Use A Java Online Resource From Green Tea Press. |
Programming › Re: Java Whatsapp Group Rebranded by BunchObute: 10:51pm On Dec 11, 2016 |
add me 08039688395 |
Jobs/Vacancies › Re: 2016 Firstbank Graduate Trainee Programme by BunchObute: 12:23am On Dec 07, 2016 |
Kindly add me to d whatsapp group: 08039688395 |
Jobs/Vacancies › Re: N-POWER Lagos State Let Us Meet Here! by BunchObute: 8:10am On Dec 02, 2016 |
flyak49: Pls, hwfa Amuwo-odofin. Any news Have you successfully sign in to update your details? I am still have challenge with my login, am under amuwo too. Admin pls add me to the whatsapp group: 08039688395 |
Jobs/Vacancies › Re: Andela: IT Training And Job by BunchObute: 11:11pm On Dec 01, 2016 |
Pakarani94: I have tried all that I could but unable to submit the object oriented lab and data structures lab. saying "error in your script"
anyone in the house pls help, there's little time left.. Have you scale through |
Jobs/Vacancies › Re: Andela: IT Training And Job by BunchObute: 11:00pm On Dec 01, 2016 |
I have the solution to OOP and Data structure. If you can send me Tax lab and Recursion we will be able to both scale through. call me on 07053261690 asap |
Jobs/Vacancies › Re: Andela: IT Training And Job by BunchObute: 10:00pm On Dec 01, 2016 |
I need urgent assistance, i am left with few hours. How can i resolve this error on my recursion lab..
|
Jobs/Vacancies › Re: Andela: IT Training And Job by BunchObute: 12:15am On Aug 16, 2016 |
Pls help me, i've tried several code for this Algo lab and its still not pulling through. This was the last code i tried:
def get_algorithm_result(number_list): largest = number_list[0] for numb in range(1, len(number_list)): if (largest < number_list[numb]): largest=number_list[numb] return largest
def prime_number(num): num = abs(int(num)) if num < 2: return False if num == 2: return True if not num & 1: return False for x in range(3, int(num**0.5)+1, 2): if num % x == 0: return False return True |
Jobs/Vacancies › Re: Andela: IT Training And Job by BunchObute: 2:07pm On Aug 14, 2016 |
I also tried this but still not getting through, what could be wrong? def get_algorithm_result(number_list): largest = number_list[0] for num in range(1, len(number_list)): if (largest < number_list[num]): largest=number_list[num] if (largest == number_list[len(number_list)-1]): return largest else: num +=1 def prime_number(numb): if numb > 1: n = numb // 2 for i in range(2, n + 1): if numb % i == 0: return "False" else : return "True" else: return "false" BunchObute: pls assist me on this Algo Lab test, the code failed to pass all tests
def get_algorithm_result(number_list): largest = number_list[0] for num in range(1, len(number_list)): if (largest < number_list[num]): largest=number_list[num] if (largest == number_list[len(number_list)-1]): return largest else: num +=1 def prime_number(num): if num > 1: for i in range( 2, num): if (num % i == 0): return "False" else : return "True" else: return "false" |
Jobs/Vacancies › Re: Andela: IT Training And Job by BunchObute: 1:47pm On Aug 14, 2016 |
pls assist me on this Algo Lab test, the code failed to pass all tests
def get_algorithm_result(number_list): largest = number_list[0] for num in range(1, len(number_list)): if (largest < number_list[num]): largest=number_list[num] if (largest == number_list[len(number_list)-1]): return largest else: num +=1 def prime_number(num): if num > 1: for i in range( 2, num): if (num % i == 0): return "False" else : return "True" else: return "false" |
Jobs/Vacancies › Re: Andela: IT Training And Job by BunchObute: 4:03pm On Aug 09, 2016 |
STILL STUCKED HERE, KINDLY ASSIST ME BunchObute: Kindly help me with relevant hint on my DS lab, it keep saying "solution failed to pass all test"
DS LAB
Create a function manipulate_data that does the following Accepts as the first parameter a string specifying the data structure to be used "list", "set" or "dictionary" Accepts as the second parameter the data to be manipulated based on the data structure specified e.g [1, 4, 9, 16, 25] for a list data structure Based off the first parameter
return the reverse of a list or add items `"ANDELA"`, `"TIA"` and `"AFRICA"` to the set and return the resulting set return the keys of a dictionary.
def manipulate_data(first="list", data =[1, 4, 9, 16, 25]): if (first == "list" : return data.reverse() elif (first == "set" : data = {"a", "b", "c", "d", "e"} data = data | {"ANDELA"} |{"TIA"} |{"AFRICA"} return set(data) elif(first == "dictionary" : data = {1: "a", 4: "b", 9: "c", 16: "d", 25: "e"} return data.keys() |
Jobs/Vacancies › Re: Andela: IT Training And Job by BunchObute: 10:02pm On Aug 08, 2016 |
Kindly help me with relevant hint on my DS lab, it keep saying "solution failed to pass all test" DS LAB Create a function manipulate_data that does the following Accepts as the first parameter a string specifying the data structure to be used "list", "set" or "dictionary" Accepts as the second parameter the data to be manipulated based on the data structure specified e.g [1, 4, 9, 16, 25] for a list data structure Based off the first parameter return the reverse of a list or add items `"ANDELA"`, `"TIA"` and `"AFRICA"` to the set and return the resulting set return the keys of a dictionary. def manipulate_data(first="list", data =[1, 4, 9, 16, 25]): if (first == "list"  : return data.reverse() elif (first == "set"  : data = {"a", "b", "c", "d", "e"} data = data | {"ANDELA"} |{"TIA"} |{"AFRICA"} return set(data) elif(first == "dictionary"  : data = {1: "a", 4: "b", 9: "c", 16: "d", 25: "e"} return data.keys() |
Jobs/Vacancies › Re: U-connect Is Recruiting by BunchObute: 6:59pm On Jun 03, 2016 |
Op please provide valuable response. Transportation is expensive this days, your response will be highly appreciated. |
Jobs/Vacancies › Re: How To Write EFCC Application Letter by BunchObute: 10:56pm On Apr 21, 2016 |
Pls clear me on the way the letter should be written, hand written or type written? |