*** shmohamud has quit (Remote host closed the connection) | 00:02 | |
*** shmohamud has quit (Remote host closed the connection) | 00:05 | |
*** shmohamud has quit (Remote host closed the connection) | 00:10 | |
*** shmohamud has quit (Remote host closed the connection) | 00:52 | |
*** mulbah has quit (Remote host closed the connection) | 06:26 | |
*** mulbah has quit (Ping timeout: 480 seconds) | 06:34 | |
*** mulbah has quit (Remote host closed the connection) | 06:45 | |
*** mulbah has quit (Ping timeout: 480 seconds) | 07:55 | |
*** mulbahk has quit (Ping timeout: 480 seconds) | 08:15 | |
*** tboimah- has quit (None) | 11:46 | |
*** tboimah has quit (Ping timeout: 480 seconds) | 11:48 | |
mulbah | Good morning tboimah | 11:55 |
---|---|---|
tboimah | How are you doing mulbah? | 11:55 |
mulbah | I'm good and you | 11:56 |
tboimah | Thanks God bro | 12:04 |
mulbah | you done with the assignment that was given to you | 12:04 |
tboimah | yeah but my was different from yours, my own was essay i don't know why he decide to give that. | 12:05 |
mulbah | okay | 12:06 |
mulbah | but try on our own that was given | 12:06 |
tboimah | shmohamud said that was for you, fkoikoi and scooper so i am following instruction but anyway will try to that on my machine but i will not post it | 12:10 |
mulbah | it's giving me hard to do it | 12:27 |
tboimah | can you past the assignment question let me see | 12:30 |
mulbah | This is it To keep you on your toes, here's a challenge question. I want you to write a program that returns True or False based on whether a string is a palindrome. A palindrome is a string that reads the same forward and backwards. Example of a palindrome is "racecar" and "hiih". Return True for palindromes, and False for non-palindromes. | 12:32 |
tboimah | hmmm okay let me try it | 12:33 |
mulbah | hmmmmmmmm | 12:33 |
mulbah | okay oooo bor but that is a difficult taxi | 12:36 |
shmohamud | good day everyone | 13:04 |
mulbah | How are you doing shmohamud | 13:05 |
tboimah | how are you doing shmohamud? | 13:05 |
svaye | Good day shmohamud | 13:06 |
shmohamud | doing well, thanks for asking. How are you guys? | 13:07 |
mulbah | as for me I'm good | 13:07 |
tboimah | doing Good | 13:07 |
svaye | I'm good | 13:08 |
shmohamud | good to hear! | 13:08 |
shmohamud | any questions for me? | 13:08 |
tboimah | I have my assignment you give me yesterday | 13:09 |
shmohamud | ok please share | 13:10 |
tboimah | hello_world = ("scooper from Monrovia") | 13:10 |
tboimah | print("Hello",hello_world) | 13:10 |
tboimah | that was essay to do | 13:10 |
sysadmin_ | Good morning Shmohamud | 13:11 |
shmohamud | toboimah, I wanted you to write a function that has a name as a parameter and the print out "Hello from {name}" | 13:11 |
shmohamud | Good day sysadmin | 13:11 |
scooper | is me spencer | 13:12 |
shmohamud | Ah, good to see you! I thought you had business with the Supe | 13:12 |
fkoikoi | Good morning shmohamud | 13:12 |
tboimah | ohho it seen like i did not get the question clear | 13:12 |
shmohamud | Good day fkoikoi | 13:12 |
scooper | yes | 13:12 |
mulbah | I did that same assignment that you give to tboimah | 13:13 |
scooper | I m just arriving for such task.... | 13:13 |
mulbah | this is it | 13:13 |
mulbah | def Hello_word(name): | 13:13 |
mulbah | print ("Hello", name) | 13:13 |
mulbah | print ("How are you doing") | 13:13 |
mulbah | Hello_word("mulbah") | 13:13 |
fkoikoi | How are you shmohamud? | 13:13 |
shmohamud | Gotcha scooper | 13:13 |
shmohamud | I'm good fkoikoi, how are you? | 13:13 |
fkoikoi | not too well | 13:14 |
shmohamud | what's going on fkoikoi? | 13:15 |
shmohamud | mulbah, the assignment was to print "Hello from {name}" you're missing the 'from" and you also added an additional "How are you doing" | 13:15 |
fkoikoi | I'm experiencing stomach pain | 13:16 |
shmohamud | You're close, but you must follow directions exactly and ask questions when something isn't clear. Programming must be exact. | 13:16 |
shmohamud | I'm sorry to hear it fkoikoi, are you able to participate today? | 13:16 |
scooper | def Yes_Or_No(decision_Making): | 13:17 |
scooper | value = list(decision_Making) | 13:17 |
scooper | value2 = [] | 13:17 |
scooper | value2.extend(value) | 13:17 |
scooper | value.reverse() | 13:17 |
mulbah | okay | 13:17 |
scooper | if value == value2: | 13:17 |
scooper | print("True") | 13:17 |
scooper | else: | 13:17 |
scooper | print("False") | 13:17 |
scooper | 13:17 | |
scooper | Yes_Or_No("Spencer") | 13:17 |
scooper | Yes_Or_No("hiih") | 13:17 |
shmohamud | Spencer, have you checked your email? | 13:17 |
shmohamud | I replied with recommendations | 13:17 |
mulbah | here is the assignment you give us too | 13:18 |
mulbah | def palindrome_text(text): | 13:18 |
mulbah | 13:18 | |
mulbah | length = len(text) | 13:18 |
mulbah | 13:18 | |
mulbah | for mk in range(0, length // 2): | 13:18 |
mulbah | if (text[mk] != text[length - mk - 1]): | 13:18 |
mulbah | return False | 13:18 |
mulbah | 13:18 | |
mulbah | return True | 13:18 |
mulbah | first_text = "hiih" | 13:18 |
mulbah | print(palindrome_text(first_text)) | 13:18 |
mulbah | second_text = "mulbah" | 13:18 |
mulbah | print(palindrome_text(second_text)) | 13:18 |
scooper | yes Programmer | 13:19 |
scooper | I checked my email but I m not seeing any reply from you...... | 13:19 |
mulbah | am i correct on this one | 13:20 |
shmohamud | I sent it late yesterday, spencer. It was in response to "Meet earlier tomorrow" email thread | 13:21 |
shmohamud | Let me take a look mulbah | 13:21 |
scooper | Can mulbah explain shmohamud what is actually on in his code.... I will like to learn something new here..... | 13:22 |
scooper | *going on in his | 13:22 |
shmohamud | Mulbah, please explain the code. | 13:23 |
shmohamud | Please go line by line | 13:23 |
mulbah | Okay | 13:23 |
shmohamud | It looks great by the way! | 13:24 |
shmohamud | I see the logic, very creative. | 13:24 |
mulbah | first I call a fuction palindrome_text(text) | 13:27 |
shmohamud | first, you define a function | 13:27 |
mulbah | yeah | 13:27 |
mulbah | and i try to find the length of the string | 13:28 |
mulbah | and to find the length of the string i put | 13:29 |
mulbah | length = len(text) | 13:29 |
shmohamud | mulbah? | 13:34 |
mulbah | and to perform the compersing of the following charter i use a for loap by putting for mk in range(0, length // 2): | 13:34 |
shmohamud | Sounds good. Mulbah did you write this without assistance from the internet? | 13:38 |
mulbah | and i comper the charter at the left hand side of the screen to the charter on the right hand side of the screen by putting if (text[mk] != text[length - mk - 1]): | 13:39 |
shmohamud | makes sense! Very creative solution. Does that answer your question scooper? | 13:40 |
mulbah | sorry i make mistake not i but mk | 13:40 |
scooper | I have a question?? | 13:40 |
scooper | yes I love mulbah code... | 13:40 |
*** svaye has quit (Read error: Connection reset by peer) | 13:40 | |
scooper | it's complicated but nice..... | 13:41 |
scooper | should I ask my questions??? | 13:42 |
shmohamud | please do | 13:42 |
mulbah | my keyboard is giving problem that why i'm taking long i texting | 13:43 |
shmohamud | we need to get you a new keyboard! | 13:43 |
shmohamud | It's all good, you've done a fantastic job explaining your code. Very impressive. | 13:44 |
scooper | got you | 13:44 |
*** svaye has quit (Remote host closed the connection) | 13:44 | |
mulbah | scooper you said that you wanted to asked a question | 13:45 |
scooper | in your code how can I make the programm print out False or True one after the order after a certain condition is True or False | 13:46 |
jelkner | Good afternoon everyone. | 13:48 |
jelkner | Apologies for being late. | 13:48 |
shmohamud | Good morning Jeff | 13:48 |
scooper | Good morning Jeff | 13:48 |
jelkner | We were signing out. | 13:48 |
tboimah | Good morning Jeff | 13:48 |
scooper | apology accepting from my end...... | 13:48 |
svaye | Good morning Jeff | 13:48 |
jelkner | I'm home now, and finished another school year. | 13:48 |
jelkner | Yippee! | 13:48 |
scooper | *accepted | 13:48 |
jelkner | svaye: would you be available to meet with me tomorrow from 12 noon to 2 pm your time? | 13:49 |
scooper | Jeff | 13:49 |
shmohamud | congratulations Jeff! | 13:49 |
svaye | yes Jeff I will be available | 13:50 |
jelkner | thanks, shmohamud! | 13:50 |
jelkner | great, svaye | 13:50 |
jelkner | we can start the CIW course together | 13:50 |
jelkner | i have the vouchers | 13:50 |
jelkner | but i didn't get a chance to set up the class yet | 13:50 |
jelkner | i can do that this afternoon | 13:50 |
jelkner | and be ready for you tomorrow at noon. | 13:51 |
mulbah | sorry i when to do something | 13:51 |
mulbah | by using break | 13:51 |
mulbah | in you your code | 13:51 |
jelkner | ok everyone | 13:51 |
mulbah | should i make it run like that scooper | 13:51 |
jelkner | looks like shmohamud has things going on here | 13:52 |
jelkner | so i'll sign off for today and return early tomorrow | 13:52 |
jelkner | bye... | 13:52 |
scooper | Jeff | 13:52 |
jelkner | Spencer | 13:52 |
jelkner | !agenda | 13:52 |
LittleWebster | Warning: There are no items on the agenda! | 13:52 |
fkoikoi | Good morning Jeff | 13:53 |
*** svaye has quit (Read error: Connection reset by peer) | 13:53 | |
jelkner | Good afternoon fkoikoi | 13:53 |
jelkner | scooper: what do you need? | 13:53 |
*** tboimah has quit (Read error: Connection reset by peer) | 13:53 | |
mulbah | Good morning jeff | 13:53 |
jelkner | Good afternoon mulbah | 13:54 |
*** scooper has quit (Read error: Connection reset by peer) | 13:54 | |
fkoikoi | shmohamud can I submit my work now | 13:54 |
shmohamud | yes please | 13:54 |
mulbah | How are you doing | 13:54 |
jelkner | fkoikoi: please remind Spencer to add an agenda | 13:54 |
fkoikoi | okay Jeff | 13:54 |
jelkner | it's his week to chair our Saturday meeting | 13:54 |
jelkner | thanks, fkoikoi | 13:54 |
*** tboimah has quit (None) | 13:55 | |
jelkner | see you tomorrow | 13:55 |
jelkner | ACTION signs off for the day to unpack and plan for tomorrow | 13:55 |
fkoikoi | palindrome_string = input("Enter a String:") | 13:55 |
fkoikoi | if palindrome_string == palindrome_string[-1]: | 13:55 |
fkoikoi | print("True") | 13:55 |
fkoikoi | 13:55 | |
fkoikoi | else: | 13:55 |
fkoikoi | print("False") | 13:55 |
*** jelkner has quit (Quit: Leaving) | 13:55 | |
scooper | \me going to the toilet | 13:55 |
*** svaye has quit (None) | 13:55 | |
*** tboimah- has quit (None) | 13:56 | |
shmohamud | fkoikoi, does this work for an input of "afdka" ? | 13:56 |
shmohamud | Also, I didn't ask it to accept user input, I asked to have a string parameter that we call ourselves | 13:56 |
fkoikoi | palindrome_string = input("Enter a String:") | 13:57 |
fkoikoi | if palindrome_string == palindrome_string[::-1]: | 13:57 |
fkoikoi | print("True") | 13:57 |
fkoikoi | 13:57 | |
fkoikoi | else: | 13:57 |
fkoikoi | print("False") | 13:57 |
shmohamud | can you rewrite it with a string parameter and turn also turn it into a function? | 13:57 |
fkoikoi | okay | 13:57 |
shmohamud | any questions for me? | 14:01 |
scooper | Put thinking cap on | 14:07 |
scooper | putting thinking cap on | 14:08 |
shmohamud | lol | 14:08 |
shmohamud | same | 14:08 |
scooper | Shmohamud is when is palindrome meanly use during program structure???? | 14:12 |
shmohamud | it's not used, but it's a common interview question. It requires breaking down the problem and creativity to solve it. | 14:13 |
shmohamud | Like your solution, it's good to know how to use extend and reverse methods, those are used fairly often. | 14:13 |
scooper | OK | 14:16 |
scooper | How is your health now???? | 14:16 |
shmohamud | physical health is good, mental health is still improving. | 14:16 |
scooper | Your well being in essential to me as I speak......Shmohamud... | 14:17 |
scooper | That why I m always asking... | 14:17 |
shmohamud | meeting with you guys helps <3 | 14:17 |
shmohamud | ACTION goes to restroom | 14:19 |
shmohamud | fkoikoi do you want to show us tomorrow? | 14:24 |
fkoikoi | sure | 14:24 |
shmohamud | ok | 14:24 |
shmohamud | Given an integer x, return true if x is a | 14:25 |
shmohamud | palindrome | 14:25 |
shmohamud | , and false otherwise. | 14:25 |
shmohamud | Write a function that accomplishes the above ^has | 14:25 |
shmohamud | for example, 121 should return true. 223 should return False | 14:25 |
shmohamud | any questions? | 14:25 |
fkoikoi | no | 14:27 |
shmohamud | Ok. Scooper did you get my email? | 14:27 |
scooper | let me check again shmohamud | 14:27 |
shmohamud | +1 | 14:28 |
scooper | No Shmohamud | 14:28 |
scooper | I m not seeing anything here........ | 14:28 |
shmohamud | I just sent you a "test reply" email on the same thread. Did you receive it? | 14:29 |
scooper | +1 now | 14:29 |
shmohamud | cool | 14:30 |
shmohamud | you see the original email too right? | 14:30 |
scooper | yes concerning the logic right??? | 14:30 |
shmohamud | yes | 14:31 |
shmohamud | ok, any last questions before i log off for the day? | 14:31 |
scooper | Anyway I will improve on my naming conversion....... right now I m still thinking like a beginner | 14:32 |
scooper | *convention | 14:32 |
shmohamud | That's OK, you're making incredible progress, believe me I'm impressed with all of you! It takes years, not months, to get where you are today. | 14:33 |
shmohamud | Keep pushing hard and I promise you will find success | 14:33 |
scooper | Thanks for the words of motivation..... | 14:33 |
shmohamud | Motivation is key. I'm only speaking the truth :) | 14:34 |
*** sysadmin_ has quit (None) | 14:37 | |
*** fkoikoi has quit (Remote host closed the connection) | 14:38 | |
shmohamud | ok, see you guys tomorrow! | 14:38 |
mulbah | alright shmohamud | 14:39 |
mulbah | Thinks fro the day | 14:40 |
shmohamud | you're welcome | 14:41 |
*** scooper has quit (Ping timeout: 480 seconds) | 14:41 | |
*** shmohamud has quit (Remote host closed the connection) | 14:42 | |
*** sysadmin has quit (None) | 14:43 | |
mulbah | shmohamud will you be online line by 9pm our time | 14:44 |
*** shmohamud has quit (Ping timeout: 480 seconds) | 14:51 | |
*** mulbah has quit (Ping timeout: 480 seconds) | 15:40 | |
*** ubuntourist has quit (Quit: Leaving) | 15:53 | |
*** shmohamud has quit (Ping timeout: 480 seconds) | 17:11 |
Generated by irclog2html.py 2.17.3 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!