About You
PYTN Lyrics


Jump to: Overall Meaning ↴  Line by Line Meaning ↴

Is this just a game I might be mistaken
Am I taken by you
My turn n you took it without really even askin'
How I'm feeling
I'm really feeling

You took all my feelings it was just like that
I didn't want it, it wasn't worth it
I gave you my heart and then you threw it right back
But it's in pieces you didn't need it

Why you gotta make it so easy
When nothing's really ever that easy about you
I'm all about you
Why you gotta make it so easy
When nothing's really ever that easy about you
I'm all about you

Are we gonna make it or are we just gonna end it
Is it just one-sided or is there reciprocation
Of what I'm feeling
What are you feeling

You took all my feelings it was just like that
I didn't want it, it wasn't worth it
I gave you my heart and then you threw it right back
But it's in pieces you didn't need it

Why you gotta make it so easy
When nothing's really ever that easy about you
I'm all about you
Why you gotta make it so easy
When nothing's really ever that easy about you
I'm all about you

If your gonna play it like that
I'm just gonna take it like that

I'll call your bluff boy I'll call your bluff
I've had enough boy I've had enough

If your gonna say it like that
Then I'm gonna say it right back

I'll call your bluff boy I'll call your bluff
I've had enough boy I've had enough

Why you gotta make it so easy
When nothing's really ever that easy about you
I'm all about you
Why you gotta make it so easy




When nothing's really ever that easy about you
I'm all about you

Overall Meaning

The lyrics to PYTN’s “Easy” are about a tumultuous relationship with someone who makes things difficult, yet the singer is still all about them. The lyrics suggest that the singer is unsure if their feelings are reciprocated and questions whether the relationship is one-sided. The chorus highlights the fact that the other person is making things easy when nothing is ever easy about them.


The singer gave their heart to the other person, but it was thrown back in their face, leaving the singer hurt and vulnerable. Despite this, the singer is still all about the other person and wants to make things work. In the bridge, the singer takes a stand and calls the other person’s bluff, asserting that they’ve had enough of the back-and-forth and are ready for honesty.


Overall, the song is an emotional and relatable portrayal of a complex relationship, where the heart still wants what it wants, even when the other person is difficult to love.


Line by Line Meaning

Is this just a game I might be mistaken
I am uncertain if this relationship is real or just a game, and I may be wrong in my assumption.


Am I taken by you
I am unsure if I am completely under your spell and controlled by you.


My turn n you took it without really even askin' How I'm feeling
It was my turn to express my feelings, but you took control without even caring to know how I truly feel.


I'm really feeling
My emotions are genuine and raw, and I am being honest with how I feel.


You took all my feelings it was just like that I didn't want it, it wasn't worth it I gave you my heart and then you threw it right back But it's in pieces you didn't need it
You took my emotions without asking or considering their worth, and when I gave you my heart, you callously discarded it. You didn't even need it, but it's now in pieces.


Why you gotta make it so easy When nothing's really ever that easy about you I'm all about you
Why do you make it seem so effortless when dealing with you is actually complex and difficult? Even so, I am still completely invested in you.


Are we gonna make it or are we just gonna end it Is it just one-sided or is there reciprocation Of what I'm feeling What are you feeling
Are we going to work through our issues and stay together? Or is this a one-sided relationship without any mutual feelings or effort? What do you truly feel?


If your gonna play it like that I'm just gonna take it like that I'll call your bluff boy I'll call your bluff I've had enough boy I've had enough
If you are going to continue to act recklessly and carelessly, I will just have to accept it. However, I will not tolerate your behavior any longer and I will stand up for myself.


Why you gotta make it so easy When nothing's really ever that easy about you I'm all about you
Again, why do you make it seem so effortless when dealing with you is actually complex and difficult? Even so, I am still completely invested in you.




Writer(s): Sara King

Contributed by Aiden H. Suggest a correction in the comments below.
To comment on or correct specific content, highlight it

Genre not found
Artist not found
Album not found
Song not found
Most interesting comments from YouTube:

@Pointwood99

You're awesome Mosh! Thank you.

Exercise 1:
name = "John Smith"
print("Name:", name)
age = 20
print("Age:", age, "Years old")
newcomer = True
print("Newcomer?", newcomer)

Exercise 2:
first = input("First: ")
second = input("Second: ")
sum = float(first) + float(second)
print(sum)

Exercise 3:
#Input
weight = input("Weight: ")
#K or L
KL = input("(K)g or (L)bs: ")
#if K
if KL.upper() == "K":
Kg = float(weight) / 0.45
print(Kg, "Lbs")
elif KL.upper() == "L":
Lbs = float(weight) * 0.45
print(Lbs, "Kg")



@yiwantao9622

0:00:00 Introduction
0:00:30 What You Can Do With Python
0:01:15 Your First Python Program
0:05:30 Variables
0:09:08 Receiving Input
0:10:48 Type Conversion
0:18:49 Strings
0:23:41 Arithmetic Operators
0:25:59 Operator Precedence
0:27:11 Comparison Operators
0:28:52 Logical Operators
0:31:06 If Statements
0:36:16 Exercise
0:41:42 While Loops
0:45:11 Lists
0:48:47 List Methods
0:52:16 For Loops
0:54:54 The range() Function
0:57:43 Tuples



@Taglioz

Thank you so much for the help Mosh!
Excercise 1:
print ("Check In")
print("Data=")
first_name = "John Smith"
age = 20
new_patient = True
print("Name:",first_name)
print("Age:",age,"Years Old")
print("New Patient?","Yes")

Excercise 2:
first = input("First: ")
second = input("Second: ")
sum = float(first) + float(second)
strsum = str(sum)
print("Sum: " + strsum)

if statements:
temperature = 25
if temperature > 30:
print("It's a Hot Day")
print("Drink plenty of water")
elif temperature > 20: # (20, 30]
print("It's a Nice Day")
elif temperature > 10: # (10, 20]
print("It's a bit cold")
else:
print("It's Cold")
print("Done")

Excercise 3:
weight = input("Weight: ")
unit = input ("(K)g or (L)bs: ")
if unit.upper() == "L":
weightk = float(weight)/2.205
print("Weight in Kg: " + str(int(weightk)) + " kg") # (lbs to kg]
elif unit.upper() == "K":
weightl = float(weight)*2.205
print("Weigth in Lbs: " + str(int(weightl))+ " lbs") # (kg to lbs]



@user-xc9fn8cz4x

Mosh you trully are an amazing teacher
anyway this is my answer to ex3
weight= int(input("Weight: "))
unit= input("(K)g or (L)bs: ")

if 'k' in unit or 'K' in unit:
converted = weight / 0.45
print("Weight in Lbs: " + str(converted))
elif 'l' in unit or 'L' in unit:
converted = weight * 0.45
print("Weight in kgs: " + str(converted))



@magicgaming1715

Ans of the second exercise

weight = int(input("Weight = "))
weight_in = input("(K/k)for KG or (P/p) for pound = ")
if weight_in =="k" :
out_weight = weight * 2.20462
weight1 = round(out_weight, 3)
print("The weight in Pound = ", weight1)
elif weight_in =="K" :
out_weight = weight * 2.20462
weight1 = round(out_weight, 3)
print("The weight in Pound = ", weight1)
elif weight_in =="p" :
out_weight = weight / 2.20462
weight1 = round(out_weight, 3)
print("The weight in kg = ", weight1)
elif weight_in =="P" :
out_weight = weight /2.20462
weight1 = round(out_weight , 3)
Your video was very help full.
I passed my grade 8 finals because of you.



@The_Haunter

Thanks for letting me double check, but the code could be smaller or simpler, with a very small google search to help with the lower case, though one could replace it instead with just CAPATALISE.

weight = float(input("Weight: "))
unit = input("(K)g or (L)bs: ")
if unit.casefold() == "k":
weight = float(weight) * 2.205
print("Weight in Lbs = " + str(weight))
else:
weight = float(weight) / 2.205
print("Weight in Kg = " + str(weight))

Edit: I just realised that he also covered the answer in the video, so my comment is kinda pointless. But oh well, I got to share my answer though so that's a plus.



@podorasbox

Thanks Mosh! I’m currently taking Harvards CS50 Python and this has helped tremendously. Here is my calculator. I modified it to have a personal touch.

# this is a calculator program
print ("This is my first calculator program I made with Python")
first = input('what is the first number?')
second = input('what is your second number? ')
# here is the code to add the numbers
sum = int(first) + int(second)
# this output shows a text with the answer on the same line
print('here is your answer ', sum)



@shutoff5212

As a beginner with a friend that programms for 6+ years right now he wrote me a code for 3rd exercise that I find easiest to read. Just to put it out there for others to see too.

if unit == "l" OR unit == "L":
print("Weight in kg = ", weight*0.45)
elif unit == "K" OR unit == "k":
print("Weight in lbs = ", weight/0.45)

weight being variable for first line
unit being variable for Kgs or Lbs line

Much love Mosh



@abolghasemsadeghi-niaraki2809

Dear Mosh,
Salaam, Thank you for effort for creating this video. I was impressed.
I would like to improve your exercise answer (36.00min)like this:

weight= int(input("Weight: "))
unit= input("(K)g or (L)bs: ")

if unit.upper () == "K":
converted = weight/0.45
print("Weight in Lbs: " + str(converted))
elif unit.upper () == "L":
converted = weight * 0.45
print("Weight in kgs: " + str(converted))

Also, I would like to suggest two other approaches for this exercise: The first one is :

weight= int(input("Weight: "))
unit= input("(K)g or (L)bs: ")

if 'k' in unit or 'K' in unit:
converted = weight / 0.45
print("Weight in Lbs: " + str(converted))
elif 'l' in unit or 'L' in unit:
converted = weight * 0.45
print("Weight in kgs: " + str(converted))



The second one is:

weight= int(input("Weight: "))
unit= input("(K)g or (L)bs: ")


if unit == "l" or unit == "L":
converted = weight * 0.45
print("Weight in kgs: " + str(converted))
elif unit == "k" or unit == "K":
converted = weight / 0.45
print("Weight in Lbs: " + str(converted))



@try2060

for the weight exercise. i came up with this. even though it is different it works

weight = float(input("weight: "))
metric = input("Kg or Lb: ")

if bool('k'):
kilo = int((weight / 2.02))
print(kilo)
elif bool('l'):
pound = int(weight * float(2.02))
print(pound)



@weixintoo5939

Hi Mosh, thank you for your video. I am new to the programming world. Hopefully to learn more from you.

Exercise:

patient_name = "John Smith"
age = 20
new_patient = True

print(patient_name, str(age), "year old", "new patient:", new_patient)



@mkcreations6317

36:53
weight = int(input("Enter your Weight: "))
unit = input("(K)g or (L)bs (That you want to change): ")
if (unit=="k" or unit=="K"):
weight /=2.204623
print("Weight in Kg: ",weight)
elif(unit=="l" or unit=="L"):
weight *=2.204623
print("Weight in Lbs: ",weight)
else:
print("Invalid Input")



All comments from YouTube:

@programmingwithmosh

🔥 Want to master Python? Get my complete Python course: https://bit.ly/434YnGt
👍 Subscribe for more Python tutorials like this: https://goo.gl/6PYaGF

@magombedzeelizabeth7411

Hey Mosh I can't find the method to change my string into an upper case... Its as if the method course. Upper is unavailable. Help please

@kamichavez6203

when I first opened pycharm It did not show me the options to choose the general setting. now when I type in the first code nothing is highlighted and when I run it, all it says is Hi pycharm :'(

@yilikalafework

why my pycharm defaultly create a main.py file

@Fameexpo

Hi sir
I learn python

@raynkata_7014

Thank you very much for the tutorial.
Could you please update the link for the Python cheat sheet? The current one is not working

98 More Replies...

@codingmadeclear2229

This guy, sat for 1 hour and talked about python, and then released it for free. legend

@Hi_its_me_Shruti

Is it really worth for beginners ?

@codingmadeclear2229

@@Hi_its_me_Shruti Yeah I think its an great course for beginners tbh

@pragmaticai

Here is another video called Python in One Hour published a few months before this one enjoy! https://www.youtube.com/watch?v=ie-hjFXlxTs

More Comments

More Versions