Day 13 of #100DaysOfPython
I used to manually organize files like a neat freak, until I made Python do it for me.
Built a File Organizer Tool that sorts files by type: Images, Docs, Videos, etc.
#Automation. Code once. Use forever.
#Python@QuintessaCodes@sir_triumph
🚀 Day 4 of #100DaysOfCode Challenge
I built a Rock Paper Scissor game. Concept learnt include:
➡ randomisation: using random module to generate random numbers or item
➡ python lists and methods
➡ also used knowledge from previous days in building
@sir_triumph@Imotellectual
🚀 Day 3 of #100DaysOfCode Challenge
I built a Treasure Island Game. Concept learnt include:
➡ conditional statement: if/else, if/elif/else, nested if/else and multiple ifs
➡ logical operators: and, or, not
➡ comparison operators: >, <, >=, <=, ==, !=
➡ code blocks: importance of indentation
➡ scope: local and global
➡ modulo operator %: returns remainder of division
➡ ascii art
I am following the @100daysofpython course by @yu_angela
I'm in this with @sir_triumph and @Imotellectual
🚀 Day 2 of #100DaysOfCode Challenge
I built a Tip Calculator. Concept learnt include:
➡️ data types: strings, integers, floats, boolean
➡️ arithmetic operation
➡️ type conversion/casting using int(), float(), str(), bool() functions
➡️ type checking using type() function
🚀 Day 1 of #100DaysOfCode Challenge
I built a startup name generator. Concept learnt include:
➡️ variables naming dos and don'ts
➡️ strings: strings of characters.
String Concatenation done with the + sign
New lines created with a \ and the letter n