Reorganized Everything

This commit is contained in:
Caleb Fontenot
2019-08-23 09:02:10 -05:00
parent 2d8aaebc4c
commit b41aa94af5
17 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
x = 5
for x in range(1000):
x*5
print(x)

View File

@@ -0,0 +1,16 @@
# import re library
import re
# Here's our string
lol = "Lol this is a string"
print(lol)
# now let's filter out the word "string"
p = re.compile('string')
filtered = p.match('string')
print(filtered)

View File

@@ -0,0 +1,28 @@
# imports libraries we will use
import time
import random
# sets values we will use later
number = 0
phrase = "The quick, brown, fox jumped over the lazy dog"
# calculates amount of letters in phrase (including spaces)
amount = len(phrase)
print("The current phrase has", amount, "letters")
# prints phrase
print("the phrase is", phrase)
print('begin loop')
time.sleep(1)
# prints phrase letters
for number in range(amount):
print(number, phrase[number], end='\r')
time.sleep(0.1)
# prints phrase letters in random order
print('\n')
print("Now, in random order!")
time.sleep(1)
for number in range(amount):
exec('iteration = random.randint(0,amount - 1)')
print(number, phrase[iteration], "iteration", iteration, end='\r')
time.sleep(0.1)