Test randrange.

This commit is contained in:
Captain ALM 2022-11-30 16:47:21 +00:00
parent 5545cd314c
commit 7c799b1650
Signed by: alfred
GPG Key ID: 4E4ADD02609997B1
1 changed files with 3 additions and 18 deletions

21
main.py
View File

@ -1,18 +1,3 @@
#Test most default useable datatypes
x = [
1,
1.1,
1j,
True,
[1],
(1),
[1],
{1},
{0:1},
frozenset({1}),
"hell",
b"heelo",
None
]
a,b,c,d,e,f,g,h,i,j,k,l,m = x
print(type(a),type(b),type(c),type(d),type(e),type(f),type(g),type(h),type(i),type(j),type(k),type(l),type(m))
import random
#randrange(lw_incl,up_excl)
print(random.randrange(0,10))