Python Forum

Full Version: invalid syntax
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
this code should be okay, but when i run it it says "invalid syntax."
Code:
youtuber = input("Name a YouTuber!")
subs = input("How many subs?")
print (youtuber + "is a YouTuber with" + subs "subscribers")
please help, thank you.
the problem is subs "subscribers" - missing +
however better start using string formatting, e.g.
print("{} is a YouTuber with {} subscribers".format(youtuber, subs))
or in python 3.6+, using f-string

print(f"{youtuber} is a YouTuber with {subs} subscribers")