This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import csv | |
import python_codon_tables | |
def read_csv_file(file_path): | |
with open(file_path) as f: | |
reader = csv.reader(f) | |
records = list(reader) | |
return records |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Bar: | |
def bar(self): | |
pass | |
class Foo: | |
def __abs__(self) -> Bar: | |
return Bar() | |
foo = Foo() | |
afoo = abs(foo) |
OlderNewer