American Young Coder

AYC logo

6 PM – Python OOP – Gamas

Today We Did We installed Python 3.10 We installed Pycharm community edition We started learning about Python dictionary. Homework Create new python file in Pycharm. Sep28_DictionaryHomework.py Copy codes from page 92 toRead More...

2 PM – Intro To Python – Gamas

Today We Did We reviewed last week homeworks. We reviewed more details about PyVCF3 module. Homework Inside VCF_file_reader_example.py do the following Read some fields from the INFO column like this record.INFO #Read More...

9AM – Intro to Python – Saagar

Today we did: Went into functions with return values in detail: why they are needed, how we use them, how the location of return affects what code runs examples of functions withRead More...

2 PM – Intro To Python – Sebastian

Today We Did list.pop(index) removes item at index list.insert(index, value) puts a value at an index list.append(value) puts a value at the end of a list list.remove(value) removes one of that value fromRead More...