Answers for "python to declare string"

17

how to use variables in string in python

#Use f-string
#Example:

x = 2
y = f'This is a string using variable x: {x}'
print(y)

#Output: 
#This is a string using variable x: 2
Posted by: Guest on August-24-2020
1

python string variable

# Python string variable

mystring = 'This is a string!'

print(mystring)
Posted by: Guest on September-16-2021

Python Answers by Framework

Browse Popular Code Answers by Language