Test string defs.

This commit is contained in:
Captain ALM 2022-11-30 16:59:34 +00:00
parent 7c799b1650
commit 89f8a5c52b
Signed by: alfred
GPG Key ID: 4E4ADD02609997B1

14
main.py
View File

@ -1,3 +1,11 @@
import random
#randrange(lw_incl,up_excl)
print(random.randrange(0,10))
#String tests
a = "hello world"
b = """hello
world"""
c = 'world hello'
d = '''world
hello'''
print(a)
print(b)
print(c)
print(d)