Search results

  1. P

    Simple python script not resulting in correct result

    Thanks, it works.
  2. P

    Big picture

    Yes, here it goes (csv_test.py): #!/usr/bin/env python3 # -*- coding: utf8 -*- import csv filename: str = "csv_test.csv" with open(filename, 'r') as infile: records = [row for row in csv.DictReader(infile, delimiter='\t', quotechar='"')] print(records) I also put csv.py in the same...
  3. P

    Big picture

    Hi, I am wandering what is the big picture behind 11l. Aspect that interests me the most is, effectively, compiling python. The potential problem is with the python ecosystem where, for default implementation, many libraries are written in C. Is there some way to wrap them to be able to link to...
  4. P

    Simple python script not resulting in correct result

    Hi, I tried to transpile and compile following python script: #!/usr/bin/env python3 # -*- coding: utf8 -*- class Test: def __init__(self, number: int): self.number: int = number def num2str(self): converted_number: str = str(self.number)...
Top