-
Notifications
You must be signed in to change notification settings - Fork 0
/
string.py
executable file
·55 lines (32 loc) · 995 Bytes
/
string.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# import modules used here -- sys is a very standard one
import sys
# Gather our code in a main() function
def main():
if len(sys.argv) > 1:
print 'Hello there', sys.argv[1]
nome = 'Ana Beatriz'
print (nome)
stringa = " Foi por uma gota d'agua. "
stringb = ' Ele disse: "Foi por pouco!" .'
stringc = 'Ele disse: "Foi por pouco,' \
'quase deu ruim.'
stringd = """
Strings literais entre aspas triplas,
podem se estender por varias linhas de texto.
"""
print (stringa)
print (stringb)
print (stringc)
print (stringd)
###############################################################
nome = 'Ana Beatriz'
print (nome)
print (nome.join('!!'))
print (nome)
nome = '!' + nome + '!'
print (nome)
###############################################################
# Standard boilerplate to call the main() function to begin
# the program.
if __name__ == '__main__':
main()