Posts

Showing posts from December, 2022

coding journal

Image
 coding journal part1  By introducing Banana Tales to  our class, we class eight students have learn the fundamental and advanced computer science concepts used in  Python . Along the way, students will develop and strengthen their computational thinking skills. while completing this code monkey banana part 1 i have faced lots of problem such as not knowing  the codes properly and also there wasn't a friend to help me during the challenges because they were also busy with their codings.  from the banana take part two starting from level from 100 to 106 was tough for me because in that challenges the code i worte were worng and also i was considered as a student which need to fast up in my challenges because my friends were already in levels like 123 and 143. after putting lots of effort i completed the challenges on date 10 december 2022 .with the help of my friends like chimi om, choeying seldon,ngawang tshering thoki ,and a person who guided in khandu wan...

CODING JOURNAL(CODE MONKEY)

Image
These are the coding concepts that are taught on Banana Tales Part 1 and will be reviewed in this article: The print() function Lists and Indexes - challenges 19 - 25 For Loops - challenges 26 - 30 Range - challenges 31 - 40 Variables - challenges 41 - 47 Conditional Statements (if-else) - challenges 48 - 59 Conditional Loops (while) - challenges 60 - 66 Boolean Operators (and, or, not) - challenges 67 - 78 Functions - challenges 79 - 87 The print() function The print() function prints the specified message to the screen. The message can be a string (a text surrounded with quotation marks) or a variable. Place the message inside the parenthesis. For example: print("I love Python") In Banana Tales, the messages are printed in the console. When a challenge is opened, the console tab is closed. If the function print() is used, the console is opened and the messages are displayed. In programming, it is very common to use prints as a way to debug your program. For exampl...