User
Write something
Coffee hour is happening in 45 hours
F this!
Today's example/challenge is f strings. They are a bit more complex but can look more professional when writing Python. Copy and paste this into PyCharm and post a screenshot of the results. first_name = input("Enter your first name: ") last_name = input("Enter your last name: ") full_name = f"{first_name} {last_name}" print(f"Your full name is {full_name} .")
F this!
๐ŸŽฎ Variable Challenge ๐Ÿ
Today youโ€™ll create variables to build your own character! โœ… Instructions Make a variable called character with your favorite video game characterโ€™s name. Make a variable called weapon with any weapon (sword, bow, etc.). Make a variable called health with a number. Then print a sentence like: "Mario has a sword and 100 health points!" ๐Ÿ“ Example Code character = "Mario" weapon = "sword" health = 100 print(character, "has a", weapon, "and", health, "health points!") ๐Ÿ‘‰ Output: Mario has a sword and 100 health points! ๐ŸŽฏ Bonus Challenge Add a level variable. Print: "___ is on level ___ with ___ health points and a ___." ๐Ÿ’ฌ Share your character creation in the comments โ€” letโ€™s see who makes the strongest one! โš”๏ธ
๐ŸŽฎ Daily Challenge โ€“ Strings ๐Ÿ
Todayโ€™s challenge is about working with text. โœ… Instructions Make a variable called word with your favorite word. Print it in all uppercase. Print it in all lowercase. ๐Ÿ“ Example Code word = "Python" print(word.upper()) # PYTHON print(word.lower()) # python ๐Ÿ’ฌ Post your code in the comments and share your favorite word! ๐Ÿš€
๐ŸŽฎ Daily Challenge โ€“ Strings ๐Ÿ
Strings Challenge
Todayโ€™s challenge is all about strings (text in Python). โœ… Instructions Create a variable called player_name with your name. Create another variable called favorite_game with your favorite video game. Print a sentence that combines both using a string. ๐Ÿ“ Example player_name = "Enrique" favorite_game = "Minecraft" # This line is being concatenated print("Hi, my name is " + player_name + " and my favorite game is " + favorite_game) ๐Ÿ‘‰ Output: Hi, my name is Enrique and my favorite game is Minecraft!
1-4 of 4
powered by
Python Playground ๐Ÿ
skool.com/python-playground-3614
A beginner-friendly Python community with live coaching, fun challenges, and a video game vibe to learn Python!