1#How to concatenate in python with f strings
2
3# This is the best way I have seen to concatenate a string with and integer
4a = 'aaa'
5b = 'bbb'
6c = 'ccc'
7d = 12
8
9txt = f'{a}{b}{c}{d}'
10print(txt)
11
12
13It will print:
14
15 aaabbbccc12
16
17 #It works as long as you have python 3.6.0 or up!
18 # I am jsut glad it works
19
20 #if you have a mac computer with vs code on it edit the .json file and change python to python 3 if you have python 3 already installed!
21
22
1String = "Grepper"
2To_concatenate = "is simple, Amazing"
3print(String +" "+ To_concatenate