TriPed-Robot / trip_kinematics

Python package for inverse kinematic calculations of hybrid serial parallel robots
https://trip-kinematics.readthedocs.io/en/main/
MIT License
28 stars 5 forks source link

f-strings #60

Open TorbenMiller opened 2 years ago

TorbenMiller commented 2 years ago

PEP 498 introduced a new way for string literals. To follow the current programming style and improve readability, I would recommend implementing this. Example:

location = "World"

output = f"Hello,{location}!"

print(output)
torben@R2-D2:~/Projects/test$ python3 test.py 
Hello,World!