Respects. :)
I have a problem, i only want to get the strings that contains up to 30 characters each time i run it.
import random
test=["test1 up to 30 characters",
"test2 passing 30 characters easy",
"test3 up to 30 characters",
"test4 passing 30 characters easy"]
random.shuffle(test)
if len(test[0]) <= 30:
print test[0]
elif len(test[0]) >= 30:
print "Shit"
print len(test[0])
All the best.
Edited:********************************************
In the test i will have a variable that will look something like this:
import random
test=["test1 up to "+variable+" characters",
"test2 passing "+variable+" characters easy",
"test3 up to "+variable+" characters",
"test4 passing "+variable+" characters easy"]
random.shuffle(test)
if len(test[0]) <= 30:
print test[0]
elif len(test[0]) >= 30:
print "Shit"
print len(test[0])
That variable will be a mixed number of characters from 5 up to i don't know, let's say 10.
I want the program to select the strings from the list that will contain maximum 30 characters in total. Your solutions just prints out the ones that contains the strings up to 30 characters and that's it. I want it to go back and find the string in the list that will give out a total of 30 characters for every variable each time. I really hope you understand, i am having trouble understanding myself. Thank you very much for the time.
Edited ***********************************************
Ok, i did this:
import random
test=["test1 up to 30 characters",
"test2 passing 30 characters easy",
"test3 up to 30 characters",
"test4 passing 30 characters easy"]
random.shuffle(test)
print [x for x in test[0:1] if len(x) < 30]
It does what i want, but still gets blanks, like empty []