Answers for "how can i made loop in say function in python"

9

python loop

a = 0
while True:
  a=a+1
  print(a)
Posted by: Guest on December-05-2021

Code answers related to "how can i made loop in say function in python"

Python Answers by Framework

Browse Popular Code Answers by Language