#STRING FIND
txt = "Hello, welcome to my world."
x = txt.find("welcome")
print(x)
txt = "Hello, welcome to my world."
x = txt.find("mani")
print(x)
txt = "Hello, welcome to my world."
x = txt.find("e", 5, 10)
print(x)
1. Create Share CREATE SHARE my_share; 2. Grant privileges to share GRANT USAGE ON DATABASE my_db TO SHARE my_share; GRANT USAGE ...
No comments:
Post a Comment