Just Wounderin If Thurs Any Chance Anyone Can Make Or Knows Of A Script That Makes Every First Letter Of Every Word In A Msn Conversation Turn To Cap ?
quote:Originally posted by Dazzy
No, and if anyone makes one I will personally kill them.
agreed
[edit more python
Python code:
a = "hello world this is the most annoying python code ever"
b = 0
d = 0
c = ""
e = ""
a = raw_input("text here") for letter in a: if d == 0:
c = c + letter.upper()
d = d + 1
else:
c = c + letter
for letter in c: if letter == " ":
b = 1 else: if b == 1:
letter = letter.upper()
b = 0
e = e + letter print e
This post was edited on 10-08-2008 at 04:36 AM by Jarrod.