“F String in Python” Code-Antworten

F Strings

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 String in 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

Was nutzt F in 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 Saiten

'''
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

Ähnliche Antworten wie “F String in Python”

Fragen ähnlich wie “F String in Python”

Weitere verwandte Antworten zu “F String in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen