2022年12月26日 星期一

立體摩天輪

 


2022年12月21日 星期三

python exercise REF

 http://kh-coding.blogspot.com/p/python-46.html

python exercise Ref

 https://buzzorange.com/techorange/2021/03/02/11-projects-for-python-beginner/

2022年12月20日 星期二

python sample

 result = [f'{x:04x}' for x in range(256) if x % 2 == 0]

print(result)


a, b = 0, 1

while a <100:

    print(a,end=', ')

    a, b = b, a+b

print()

    

a,b =240,360

while a!=b:

    if a<b: a,b = b,a

    a,b = b,a-b

print(a)

2022年12月8日 星期四

vex vr