-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.py
More file actions
65 lines (42 loc) · 973 Bytes
/
practice.py
File metadata and controls
65 lines (42 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#first_name = "varun"
#last_name = "bali"
#age = 51
#is_genius = False
#print(first_name)
#print(last_name)
#print(age)
#name = input("what is your name?")
#print("hello " + name)
#name = input("what is your superhero name ? ")
#print("my superhero is " + name)
#type conversion
#old_age=input("enter your age : ")
#new_age=int(old_age)+5
#print(new_age)
#old_age=input("enter your age : ")
#new_age=float(old_age)+5
#print(new_age)
#sum progrmm
#fstnumber=input("enter a first number: ")
#secdnumber=input("enter a second number: ")
#sum=float(fstnumber)+float(secdnumber)
#print("sum is :"+str(sum))
#upper case
#name="hello how are you ?"
#print(name.upper())
#print(eval(input("calculator = ")))
# from turtle import
# color('red', 'yellow')
# begin_fill()
# while True:
# forward(200)
# left(170)
# if abs(pos()) < 1:
# break
# end_fill()
# done()
#hello world
#name="aditya kaushal"
#age=25
s='Hello World'
print(s.lower())