-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPythonStarted.py
More file actions
36 lines (33 loc) · 886 Bytes
/
Copy pathPythonStarted.py
File metadata and controls
36 lines (33 loc) · 886 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
# print("hello")
# print("world")
# print('''Twinkle twinkle little star
# How I wonder what you are
# Up above the world so high
# Like a diamond in the sky
# Twinkle twinkle little star
# How I wonder what you are
# Twinkle twinkle little star
# How I wonder what you are
# Up above the world so high
# Like a diamond in the sky
# Twinkle twinkle little star
# How I wonder what you are
# Twinkle twinkle little star
# How I wonder what you are
# Up above the world so high
# Like a diamond in the sky
# Twinkle twinkle little star
# How I wonder what you are''')
# import pyttsx3
# engine = pyttsx3.init()
# engine.say("saad shutup")
# engine.runAndWait()
# a = "Haris Saddique"
# print(a[1 : 8 :4])
# print(a.startswith("Haris"))
# print(a.endswith("Saddique"))
# print(a.lower())
# print(a.upper())
# print(a.replace("Haris", "Saad"))
# print(a.capitalize())
# print(a.title())