2022-2023/1NSI/Evaluations/DS_2023-03-31/annexes/QCM_cpt.py

6 lines
57 B
Python

a = 1
cpt = 1
while cpt < 8:
a = 2*a
cpt = cpt+1