Week 7 ( Blackbox AI, Python )
Blackbox Blackbox is an Ai tool that was able to teach me Python. Python is something I been wanting to understand and learn. I was able to type " teach me python". Black box provided me with sources such as 1) python.org 2) teachmepython.com 3) learnpython.org 4) dataquest.io It gave me sources that was all to go to and learn Python. These sources talked about variance and tools when it comes too python. It was able to go step by step when it came to functions, loops, basic operations, modules and lambda functions. 1 # String 2 name = "John Doe" 3 4 # Integer 5 age = 25 6 7 # Float 8 height = 5.9 9 10 # Boolean 11 is_student = True Blackbox Ai gave me a data structure and was giving me functions using the " def" keyword. It only gave me a few steps and tips such say variables, data structure, control flow and functions. 1 # Function 2 def greet ( name ) : 3 print ( f"Hello, { name } !" ) 4 5 greet ( "John Doe...