Codes for quilting: Difference between revisions
(Created page with " <b>loops</b> for x in range(10): print ("hello python") print (x) x = 1 while x<10: print (f"x is {x}") x = x + 1 <b>.random</b> import random dir (random)...") |
No edit summary |
||
Line 11: | Line 11: | ||
<b>.random</b> | <b>.random</b> | ||
from random import choice | from random import choice | ||
Revision as of 16:33, 15 October 2020
loops for x in range(10):
print ("hello python") print (x)
x = 1 while x<10:
print (f"x is {x}") x = x + 1
.random from random import choice