Skip to content
View odonckers's full-sized avatar

Block or report odonckers

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Print 0...100 without numbers Print 0...100 without numbers
    1
    def bool_to_int(bool_list):
    2
        return int("".join([str(int(x)) for x in bool_list]))
    3
    
                  
    4
    if __name__ == "__main__":
    5
        for i in range(bool_to_int([True, False, True])):
  2. Print 0...100 without numbers on one... Print 0...100 without numbers on one line
    1
    [print(i) for i in range(int("".join([str(int(x)) for x in [True, False, True]])))]
  3. snake-antivirus snake-antivirus Public archive

    A simple antivirus written in Python in which can scan files.

    Python 1