“F string di Python” Kode Jawaban

string 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 string di 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

Apa gunanya f dalam 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 string

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

Jawaban yang mirip dengan “F string di Python”

Pertanyaan yang mirip dengan “F string di Python”

Lebih banyak jawaban terkait untuk “F string di Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya