+ 2
What is the error ?
2 Antworten
+ 4
Thx I get it you should check
https://code.sololearn.com/c583Eh61zWws/?ref=app
+ 2
#On line 28, your identation was not proper and you forgot to add a colon : at the end of if statement
print ( "hello world")
f = 2+2
s = 3*4
u = 60.0/6.0
y = 6-6
t = 6.0/1.5
q = t + y + s + u + f
print (float( q ))
v = 3000000000000000000**-10
print( v )
hot = t // u
sunny = t % u
print ( hot + sunny )
vr = " Python is fun ....."
ar = " But, you need to learn it .."
joke = vr + ar
print ( joke )
asw = "python\'s game are best in world "
print ( asw )
leone = """ sun is hot and also yellow .
sunny is my girl but sunny is boy"""
print (leone )
# using input type any thing *
type = input ( "true y/n :")
print ( type )
print (type + """YOU ARE BIT RIGHT BUT,
FOR GETTING THE TRUE ANS. USE YOUTUBE""" )
if 4 > 2:
print ( "mahya")