# -*- encoding: utf-8 -*-
""" PyCharm main 2022年05月23日 by littleSun """
import itertools
from typing import *
def main():
a = 1j
b = 1 + 1j
c = complex(1, 1)
print(b == c)
# 可以當成坐標用,用於快速判斷某一個點是否在某一個區域裡
s = {
complex(x, y) for y, x in itertools.product(range(10), range(10))}
print(s)
return None
if __name__ == "__main__":
main()
@https://github.com/WzzPersonal/SmartPython/