Para imprimir uma informação em Python, se utiliza a função embutida print( ).
Você pode informar diretamente o texto ou pode passar variáveis.
Passando uma string
1 2 3 4 5 6 7 8 9 10 11 12 |
# Passando string simples print("Ola Mundo") # passando string de multiplas linhas print("""Silvio Silva Firminon """) Ola Mundo Silvio Silva Firminon |
Passando variáveis com espaço em branco no separadores e quebra de linha ao final
1 2 3 4 5 6 |
nome1 = "Silvio" nome2 = "Silva" nome3 = "Firmino" print(nome1,nome2,nome3, sep=' ', end='\n') Silvio Silva Firminon |
Formatando uma String com F-String e Format
1 2 3 4 5 6 7 |
aluno = "Pedro" idade = 12 print(f"Aluno: {aluno}, Idade:{idade}") print("Aluno: {}, Idade: {}".format(aluno,idade)) Aluno: Pedro, Idade:12 Aluno: Pedro, Idade: 12 |
Dica:
No IDLE do Python você pode consultar as funções nativas da linguagem com help( )
Veja:
1 2 3 4 5 6 7 8 9 10 |
help(print) Help on built-in function print in module builtins: print(...) print(value, ..., sep=' ', end='n', file=sys.stdout, flush=False) Prints the values to a stream, or to sys.stdout by default. Optional keyword arguments: file: a file-like object (stream); defaults to the current sys.stdout. sep: string inserted between values, default a space. end: string appended after the last value, default a newline. flush: whether to forcibly flush the stream. |