“F chaîne en python” Réponses codées

Frages F

var = 1
print(f'number {var}')
A DG

f String

# f string
name = 'John'
age = 43
st = f"Hello my name is {name}, I am {age} years old."
print(st) 
Impossible Impala

F chaîne en python

# Ques.1
num = int(input("Enter your number: "))

for i in range(1, 11):
    # print(str(num) + " × " + str(i) + " = " + str(i*num))
    # you can't add variables
    
    print(f"{num} × {i} = {num*i}")
    # you can add variables
Xinov10

Quelle est l'utilisation de F dans Python?

The f or F in front of strings tells Python to look at the values inside {} and substitute them with the values of the variables if exist.
Example:
agent = 'James Bond'
num = 9

# old ways
print('{0} has {1} number '.format(agent, num))

# f-strings way
print(f'{agent} has {num} number')

OUTPUT:
James Bond has 9 number
Fancy Ferret

Python f Strings

'''
In python, rather than adding pieces of string together, you can use
f-strings to insert variables into strings. This makes your code much
more easier to read.
'''

# OLD - WITHOUT F-STRINGS
name = 'Bob'
age = 12
print('This is ' + name + ', he is ' + age + ' years old.')

# NEW - WITH F-STRINGS
print(f'This is {name}, he is {age} years old') # Note the f in front
Ninja Penguin

Réponses similaires à “F chaîne en python”

Questions similaires à “F chaîne en python”

Plus de réponses similaires à “F chaîne en python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code